mirror of
https://gitee.com/mateos/mateclaw.git
synced 2026-09-14 03:33:43 +08:00
18 lines
348 B
Java
18 lines
348 B
Java
package vip.mate.plugin.api;
|
|
|
|
/**
|
|
* Runtime exception for plugin-related errors.
|
|
*
|
|
* @author MateClaw Team
|
|
*/
|
|
public class PluginException extends RuntimeException {
|
|
|
|
public PluginException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public PluginException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
}
|