mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-18 15:00:00 +00:00
11 lines
369 B
TypeScript
11 lines
369 B
TypeScript
![]() |
import { Plugin } from "knub";
|
||
|
import { PluginRuntimeError } from "../PluginRuntimeError";
|
||
|
import { TextableChannel } from "eris";
|
||
|
import { errorMessage, successMessage } from "../utils";
|
||
|
|
||
|
export class ZeppelinPlugin extends Plugin {
|
||
|
protected throwPluginRuntimeError(message: string) {
|
||
|
throw new PluginRuntimeError(message, this.pluginName, this.guildId);
|
||
|
}
|
||
|
}
|