import CustomRequestException from "./customRequestException"; export default class UnauthorizedRequestException extends CustomRequestException { constructor(msg: string, err?: any) { super(401, msg, err); } }