com.tobedevoured.command.ConfigException 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;
/**
* 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);
}
}