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

8 lines
208 B
TypeScript
Raw Normal View History

import CustomRequestException from "./customRequestException";
export default class InternalException extends CustomRequestException {
constructor(msg: string, err?: any) {
super(500, msg, err);
}
}