自定义messageConverter

This commit is contained in:
felord.cn
2020-12-01 22:36:32 +08:00
parent 0e1efd4e94
commit 30d04ec4da
57 changed files with 101 additions and 133 deletions

View File

@@ -0,0 +1,27 @@
package cn.felord.payment;
/**
* @author Dax
* @since 14:18
*/
public class PayException extends RuntimeException {
public PayException() {
}
public PayException(String message) {
super(message);
}
public PayException(String message, Throwable cause) {
super(message, cause);
}
public PayException(Throwable cause) {
super(cause);
}
public PayException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}