ソースを参照

Deleted unnecessary files

hakumizuki 4 年 前
コミット
2bbda8859c
1 ファイル変更0 行追加12 行削除
  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;
-  }
-
-}