import type { FieldValidationMessage } from '../types.js'; import { Exception } from './exception.js'; /** * An exception related validation errors. */ export declare class ValidationException extends Exception { static code: string; static status: number; static message: string; static help: string; violations: FieldValidationMessage[]; constructor(violations: FieldValidationMessage[], options?: ErrorOptions & { message?: string; }); } //# sourceMappingURL=validation_exception.d.ts.map