Files
Paper/paper-api/src/main/java/com/destroystokyo/paper/exception/ServerPluginEnableDisableException.java
2016-02-29 20:24:35 -06:00

20 lines
814 B
Java

package com.destroystokyo.paper.exception;
import org.bukkit.plugin.Plugin;
/**
* Thrown whenever there is an exception with any enabling or disabling of plugins.
*/
public class ServerPluginEnableDisableException extends ServerPluginException {
public ServerPluginEnableDisableException(String message, Throwable cause, Plugin responsiblePlugin) {
super(message, cause, responsiblePlugin);
}
public ServerPluginEnableDisableException(Throwable cause, Plugin responsiblePlugin) {
super(cause, responsiblePlugin);
}
protected ServerPluginEnableDisableException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace, Plugin responsiblePlugin) {
super(message, cause, enableSuppression, writableStackTrace, responsiblePlugin);
}
}