2024-08-23 07:44:36 +00:00
|
|
|
import CustomRequestException from "./customRequestException";
|
2024-08-22 09:40:31 +00:00
|
|
|
|
2024-08-23 07:44:36 +00:00
|
|
|
export default class InternalException extends CustomRequestException {
|
2024-08-22 09:40:31 +00:00
|
|
|
constructor(msg: string) {
|
2024-08-23 07:44:36 +00:00
|
|
|
super(500, msg);
|
2024-08-22 09:40:31 +00:00
|
|
|
}
|
|
|
|
}
|