com.tobedevoured.command.RunException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Make Java do your bidding by turning any code into an executable
The newest version!
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);
}
}