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