mirror of
https://github.com/dromara/payment-spring-boot.git
synced 2026-03-14 13:53:42 +08:00
exception handler
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.enongm.dianji.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