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-08-22 11:40:31 +02:00
|
|
|
constructor(msg: string) {
|
2024-08-23 09:44:36 +02:00
|
|
|
super(401, msg);
|
2024-08-22 11:40:31 +02:00
|
|
|
}
|
|
|
|
}
|