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

com.anji.plus.gaea.oss.exceptions.GaeaOSSException Maven / Gradle / Ivy

There is a newer version: 2.9.4.1
Show newest version
package com.anji.plus.gaea.oss.exceptions;

/**
 * GaeaOSS异常
 */
public class GaeaOSSException extends RuntimeException{

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

    public GaeaOSSException(Throwable throwable) {
        super(throwable);
    }

    public GaeaOSSException(String message, Throwable throwable) {
        super(message, throwable);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy