20 lines
814 B
Java
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);
|
|
}
|
|
} |