import { ExceptionBase } from "./exceptionsBaseType"; export default class UnauthorizedRequestException extends Error implements ExceptionBase { statusCode: number = 401; constructor(msg: string) { super(msg); } }