com.tobedevoured.command.CommandException 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;
/**
* Exec Exception
*
* @author Michael Guymon
*/
public class CommandException extends Exception {
private static final long serialVersionUID = -2304343317798243074L;
public CommandException( String message ) {
super( message );
}
public CommandException( String message, Throwable throwable ) {
super( message, throwable );
}
public CommandException( Throwable throwable ) {
super( throwable );
}
}