SubServers-2/SubServers.Host/src/net/ME1312/SubServers/Host/Library/Exception/IllegalPluginException.java

16 lines
377 B
Java

package net.ME1312.SubServers.Host.Library.Exception;
import java.lang.reflect.InvocationTargetException;
/**
* Illegal Plugin Exception
*/
public class IllegalPluginException extends InvocationTargetException {
public IllegalPluginException(Throwable e) {
super(e);
}
public IllegalPluginException(Throwable e, String s) {
super(e, s);
}
}