errors.ts 192 B

123456789
  1. export class InvalidGrowiCommandError extends Error {
  2. constructor(e?: string) {
  3. super(e);
  4. this.name = new.target.name;
  5. Object.setPrototypeOf(this, new.target.prototype);
  6. }
  7. }