mirror of
https://github.com/dromara/payment-spring-boot.git
synced 2026-03-14 22:03:41 +08:00
自定义messageConverter
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user