summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/profile/EProfileException.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/common/src/com/netscape/certsrv/profile/EProfileException.java')
-rw-r--r--base/common/src/com/netscape/certsrv/profile/EProfileException.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/base/common/src/com/netscape/certsrv/profile/EProfileException.java b/base/common/src/com/netscape/certsrv/profile/EProfileException.java
index 5ad254f74..e3cd95b7d 100644
--- a/base/common/src/com/netscape/certsrv/profile/EProfileException.java
+++ b/base/common/src/com/netscape/certsrv/profile/EProfileException.java
@@ -48,4 +48,8 @@ public class EProfileException extends EBaseException {
public EProfileException(String msg, Throwable cause) {
super(msg, cause);
}
+
+ public EProfileException(Throwable cause) {
+ super(cause.getMessage(), cause);
+ }
}