We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17ee053 commit 769286aCopy full SHA for 769286a
src/errorHandler.ts
@@ -1,11 +1,11 @@
1
-import { MyError } from './error';
+import { MyError, HttpError } from './error';
2
import logger from './logger';
3
4
/**
5
* Log error to destination then exit the process if programmer error
6
* @param err error to be handled
7
*/
8
-const handle = (err: MyError): void => {
+const handle = (err: MyError | HttpError): void => {
9
// E.g. log to sentry
10
// E.g. log to console
11
logger.error(err);
src/express.ts
@@ -39,7 +39,7 @@ const handleErrors = (
39
errorHandler.handle(err);
40
41
try {
42
- // check if status code exists
+ // check if status code exists, error thrown if doesn't
43
getStatusText((err as HttpError).code);
44
45
res.status((err as HttpError).code).send(err);
0 commit comments