移除过时方法,工具类迁移

This commit is contained in:
egan
2021-08-01 23:33:02 +08:00
parent d40efb21c5
commit 4d1ad05fa8
19 changed files with 113 additions and 188 deletions

View File

@@ -18,6 +18,11 @@ public class PayErrorException extends RuntimeException {
this.error = error;
}
public PayErrorException(PayError error, Throwable throwable) {
super(error.getString(), throwable);
this.error = error;
}
public PayError getPayError() {
return error;