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