mirror of
https://github.com/dromara/payment-spring-boot.git
synced 2026-03-14 05:43:46 +08:00
28 lines
598 B
Java
28 lines
598 B
Java
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);
|
|
}
|
|
}
|