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