UNPKG

node-web-mvc

Version:
12 lines (11 loc) 395 B
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); }