ff-admin-server/src/exceptions/unauthorizedRequestException.ts

8 lines
219 B
TypeScript
Raw Normal View History

2024-08-23 09:44:36 +02:00
import CustomRequestException from "./customRequestException";
2024-08-23 09:44:36 +02:00
export default class UnauthorizedRequestException extends CustomRequestException {
2024-09-06 10:08:19 +02:00
constructor(msg: string, err?: any) {
super(401, msg, err);
}
}