
com.tobedevoured.command.RunException Maven / Gradle / Ivy
package com.tobedevoured.command;
/**
* Run Exception
*
* @author Michael Guymon
*
*/
public class RunException extends Exception {
public RunException(String message) {
super(message);
}
public RunException(Throwable cause) {
super(cause);
}
public RunException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy