com.hn.pay.exception.PayException Maven / Gradle / Ivy
package com.hn.pay.exception;
/**
* 描述:
* 支付异常
*
* @author fei
* 2019-08-19 15:35
*/
public class PayException extends RuntimeException {
public PayException() {
}
public PayException(String message) {
super(message);
}
public PayException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy