Sfoglia il codice sorgente

Deleted unnecessary files

hakumizuki 4 anni fa
parent
commit
2bbda8859c
1 ha cambiato i file con 0 aggiunte e 12 eliminazioni
  1. 0 12
      packages/slack/src/interfaces/http-errors.ts

+ 0 - 12
packages/slack/src/interfaces/http-errors.ts

@@ -1,12 +0,0 @@
-import { HttpError } from 'http-errors';
-
-export class CustomHttpError extends Error {
-
-  httpError: HttpError
-
-  constructor(httpError: HttpError) {
-    super(httpError.message);
-    this.httpError = httpError;
-  }
-
-}