This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import ExpressValidator = require('express-validator'); | |
| export class HttpError extends Error { | |
| constructor(public code: number, message: string) { | |
| super(message); | |
| Object.setPrototypeOf(this, HttpError.prototype); | |
| } | |
| } | |
| export class RequestValidationError extends Error { |