From f7825beea9961eaa8a0c589f46518d79b0e45142 Mon Sep 17 00:00:00 2001 From: Ruben Verborgh Date: Wed, 30 Dec 2020 19:24:00 +0100 Subject: [PATCH] fix: Export all errors. --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 39f02dc73..05528a77f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -168,8 +168,10 @@ export * from './util/errors/BadRequestHttpError'; export * from './util/errors/ConflictHttpError'; export * from './util/errors/ForbiddenHttpError'; export * from './util/errors/HttpError'; +export * from './util/errors/InternalServerError'; export * from './util/errors/MethodNotAllowedHttpError'; export * from './util/errors/NotFoundHttpError'; +export * from './util/errors/NotImplementedHttpError'; export * from './util/errors/SystemError'; export * from './util/errors/UnauthorizedHttpError'; export * from './util/errors/UnsupportedMediaTypeHttpError';