Skip to content

Commit 769286a

Browse files
committed
feat(errorHandler): update handle fnc argument type to MyError | HttpError
1 parent 17ee053 commit 769286a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/errorHandler.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { MyError } from './error';
1+
import { MyError, HttpError } from './error';
22
import logger from './logger';
33

44
/**
55
* Log error to destination then exit the process if programmer error
66
* @param err error to be handled
77
*/
8-
const handle = (err: MyError): void => {
8+
const handle = (err: MyError | HttpError): void => {
99
// E.g. log to sentry
1010
// E.g. log to console
1111
logger.error(err);

src/express.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const handleErrors = (
3939
errorHandler.handle(err);
4040

4141
try {
42-
// check if status code exists
42+
// check if status code exists, error thrown if doesn't
4343
getStatusText((err as HttpError).code);
4444

4545
res.status((err as HttpError).code).send(err);

0 commit comments

Comments
 (0)