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

fun.bigtable.kraken.exception.IException Maven / Gradle / Ivy

There is a newer version: 2.0.9.1
Show newest version
package fun.bigtable.kraken.exception;

public abstract class IException extends RuntimeException {
    public IException(String message) {
        super(message);
    }

    public IException() {
        super();
    }

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

    abstract Type getErrorType();

    abstract String getErrCode();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy