All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hn.pay.exception.PayException Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
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