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