tethys.api/src/exceptions/PageNotFoundException.ts
2022-11-07 13:55:02 +01:00

12 lines
322 B
TypeScript

import { StatusCodes } from "http-status-codes";
import HTTPException from "./HttpException";
class PageNotFoundException extends HTTPException {
constructor(message?: string) {
super(StatusCodes.NOT_FOUND, message || "Page not found");
this.stack = "";
}
}
export default PageNotFoundException;