UNPKG

nowjs-core

Version:

NowCanDo Javascript Core [nowjs-core] is a library written by TypeScript code maintains under Apache 2.0 licence

14 lines (13 loc) 503 B
import { Exception } from '../exceptions'; export declare class ValidatorException extends Exception { private validatorName; private target; private property; private children?; constructor(validatorName: string, target: Record<string, any>, property: string, message: string, children?: ValidatorException[]); get ValidatorName(): string; get Target(): Record<string, any>; get Property(): string; get Message(): string; get Children(): ValidatorException[]; }