|
|
@ -87,7 +87,7 @@ public abstract class BaseException extends Exception { |
|
|
|
StringBuffer sb = new StringBuffer(); |
|
|
|
sb.append("系统异常,异常代码[").append(this.code).append("]\n"); |
|
|
|
sb.append("异常信息:[").append(this.message).append("]\n"); |
|
|
|
sb.append("异常详情:[").append(this.message).append("]\n"); |
|
|
|
sb.append("异常详情:[").append(this.errorData).append("]\n"); |
|
|
|
sb.append(super.toString()); |
|
|
|
return sb.toString(); |
|
|
|
} |
|
|
|