@sarahisweird/hmoog
Version:
Out-of-game automation for Hackmud
13 lines (12 loc) • 341 B
JavaScript
export class OogInitializationError extends Error {
constructor(reason) {
super(`Failed to initialize OOG: ${reason}`);
}
}
export class OogNotInitializedError extends Error {
constructor() {
super('You need to call init() before calling other methods!');
}
}
export class OogExecutionError extends Error {
}