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

8 lines
208 B
TypeScript
Raw Normal View History

2024-08-23 07:44:36 +00:00
import CustomRequestException from "./customRequestException";
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);
}
}