2024-08-23 09:44:36 +02:00
|
|
|
import CustomRequestException from "./customRequestException";
|
2024-08-22 11:40:31 +02:00
|
|
|
|
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);
|
2024-08-22 11:40:31 +02:00
|
|
|
}
|
|
|
|
}
|