mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
30 lines
764 B
TypeScript
30 lines
764 B
TypeScript
///<reference path="../../typings/index.d.ts"/>
|
|
|
|
import {RenderingMWs} from "../middlewares/RenderingMWs";
|
|
import {Error, ErrorCodes} from "../../common/entities/Error";
|
|
|
|
export class ErrorRouter {
|
|
constructor(private app) {
|
|
|
|
this.addApiErrorHandler();
|
|
this.addGenericHandler();
|
|
}
|
|
|
|
private addApiErrorHandler() {
|
|
this.app.use("/api/*",
|
|
RenderingMWs.renderError
|
|
);
|
|
};
|
|
|
|
private addGenericHandler() {
|
|
this.app.use((err, req, res, next) => {
|
|
|
|
//Flush out the stack to the console
|
|
console.error(err.stack);
|
|
next(new Error(ErrorCodes.SERVER_ERROR, "Unknown server side error"));
|
|
},
|
|
RenderingMWs.renderError
|
|
);
|
|
}
|
|
|
|
} |