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