export class HttpStatusException extends Error { constructor(msg: string, public statusCode: number) { super(msg); } }