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

bdi.glue.proc.common.ProcException Maven / Gradle / Ivy

The newest version!
package bdi.glue.proc.common;

/**
 * @author @aloyer
 */
public class ProcException extends RuntimeException {
    public ProcException(String message) {
        super(message);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy