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

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

The newest version!
package com.tobedevoured.command;

/**
 * Config Exception
 * 
 * @author Michael Guymon
 *
 */
public class ConfigException extends Exception {

	// Generated UID
	private static final long serialVersionUID = 1L;

	public ConfigException(String message) {
		super(message);
	}

	public ConfigException(Throwable cause) {
		super(cause);
	}

	public ConfigException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy