exception handler

This commit is contained in:
xiafang
2020-11-04 14:27:04 +08:00
parent 71887fdc13
commit cb98993e8f
15 changed files with 157 additions and 139 deletions

View File

@@ -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);
}
}