node-web-mvc
Version:
node spring mvc
12 lines (11 loc) • 395 B
TypeScript
import MethodParameter from '../servlets/method/MethodParameter';
import Exception from './Exception';
export default class MethodArgumentNotValidException extends Exception {
parameter: MethodParameter;
bindingResult: {
objectName: string;
fieldName: string;
message: string;
};
constructor(parameter: MethodParameter, message: string, paths: string);
}