UNPKG

nowjs-core

Version:

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

9 lines (8 loc) 259 B
import { Exception } from './index'; export declare class ValidationException extends Exception { private field; constructor(field: string, message: string, innerError?: Error); get Field(): string; toJSON(): string; toString(): string; }