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