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

com.tobedevoured.command.CommandException Maven / Gradle / Ivy

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 );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy