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

me.xethh.libs.toolkits.exceptions.CommonException Maven / Gradle / Ivy

The newest version!
package me.xethh.libs.toolkits.exceptions;

public class CommonException extends RuntimeException{
    public CommonException() {
    }

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

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

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

    public CommonException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy