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

com.thegoate.utils.UtilException Maven / Gradle / Ivy

There is a newer version: 0.15.17.202312051550
Show newest version
package com.thegoate.utils;

/**
 * Exception to be thrown by Utility classes.
 * Created by Eric Angeli on 3/5/2018.
 */
public class UtilException extends Exception {
    public UtilException(){
        super();
    }
    public UtilException(String message){
        super(message);
    }
    public UtilException(String message, Throwable cause){
        super(message, cause);
    }
    public UtilException(Throwable cause){
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy