修改 MyException 的构造方法。

dev
ZhouXY108 2023-02-01 14:22:21 +08:00
parent a4bd80de4a
commit 883b03e550
1 changed files with 1 additions and 0 deletions

View File

@ -16,6 +16,7 @@ package org.csource.common;
*/
public class MyException extends Exception {
public MyException(String s, Exception e) {
super(s, e);
}
public MyException(String message) {