com.github.codingdebugallday.exceptions.PluginException Maven / Gradle / Ivy
The newest version!
package com.github.codingdebugallday.exceptions;
/**
*
* 自定义异常 PluginException
*
*
* @author isaac 2020/6/16 14:24
* @since 1.0
*/
public class PluginException extends RuntimeException {
public PluginException() {
super();
}
public PluginException(String s) {
super(s);
}
public PluginException(String message, Throwable cause) {
super(message, cause);
}
public PluginException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy