This is an automated email from the ASF dual-hosted git repository.
doebele pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/empire-db.git
The following commit(s) were added to refs/heads/master by this push:
new 661f8a59 EMPIREDB-431 UserLevelException additional constructor
661f8a59 is described below
commit 661f8a593c3197b684f6992083674c8c59dcba85
Author: Rainer Döbele <[email protected]>
AuthorDate: Wed Jul 3 19:22:46 2024 +0200
EMPIREDB-431
UserLevelException additional constructor
---
.../java/org/apache/empire/db/exceptions/UserLevelException.java | 5 +++++
1 file changed, 5 insertions(+)
diff --git
a/empire-db/src/main/java/org/apache/empire/db/exceptions/UserLevelException.java
b/empire-db/src/main/java/org/apache/empire/db/exceptions/UserLevelException.java
index 43aaa514..a7b34bed 100644
---
a/empire-db/src/main/java/org/apache/empire/db/exceptions/UserLevelException.java
+++
b/empire-db/src/main/java/org/apache/empire/db/exceptions/UserLevelException.java
@@ -35,4 +35,9 @@ public abstract class UserLevelException extends
EmpireException
{
super(errType, params);
}
+
+ public UserLevelException(EmpireException e)
+ {
+ super(e.getErrorType(), e.getErrorParams(), e);
+ }
}