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-09-06 08:08:19 +00:00
|
|
|
constructor(msg: string, err?: any) {
|
|
|
|
super(500, msg, err);
|
2024-08-22 09:40:31 +00:00
|
|
|
}
|
|
|
|
}
|