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

8 lines
192 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 {
constructor(msg: string) {
2024-08-23 07:44:36 +00:00
super(500, msg);
}
}