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

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

There is a newer version: 0.3.5
Show 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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy