修改异常类

This commit is contained in:
junj2.liang 2022-09-08 10:33:38 +08:00
parent 1be35ace33
commit 48a1aa828c

View File

@ -102,7 +102,7 @@ public class SydApiException extends RuntimeException{
}
public SydApiException(int retCode) {
super("SydApiException(" + "code = "+String.format("%d", retCode) + ")" );
super("SydApiException(" + "code = "+String.format("%04x", retCode) + ")" );
this.retCode = retCode;
transMsg();
}