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

com.github.xxscloud5722.PayIOException Maven / Gradle / Ivy

The newest version!
package com.github.xxscloud5722;
/**
 * @author Cat.
 */
public class PayIOException extends RuntimeException {
    public PayIOException() {
        super();
    }

    public PayIOException(String message) {
        super(message);
    }

    public PayIOException(String message, Throwable cause) {
        super(message, cause);
    }

    public PayIOException(Throwable cause) {
        super(cause);
    }

    protected PayIOException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy