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

10 lines
215 B
TypeScript
Raw Normal View History

import { ExceptionBase } from "./exceptionsBaseType";
export default class InternalException extends Error implements ExceptionBase {
statusCode: number = 500;
constructor(msg: string) {
super(msg);
}
}