Skip to content

Commit

Permalink
Fix uts
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbumenJ committed Jun 22, 2023
1 parent fae1958 commit cb489f2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ public class GenericException extends org.apache.dubbo.rpc.service.GenericExcept
public GenericException() {
}

public GenericException(String exceptionMessage) {
super(exceptionMessage);
}

public GenericException(String exceptionClass, String exceptionMessage) {
super(exceptionClass, exceptionMessage);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ public class GenericException extends RuntimeException {
public GenericException() {
}

public GenericException(String exceptionMessage) {
super(exceptionMessage);
this.exceptionMessage = exceptionMessage;
}

public GenericException(String exceptionClass, String exceptionMessage) {
super(exceptionMessage);
this.exceptionClass = exceptionClass;
Expand Down

0 comments on commit cb489f2

Please sign in to comment.