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