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);
}
