UNPKG

@accordproject/concerto-core

Version:

Core Implementation for the Concerto Modeling Language

19 lines (18 loc) 562 B
declare const BaseException: any; /** * Exception thrown when a resource fails to model against the model * @extends BaseException * @see See {@link BaseException} * @class * @memberof module:concerto-core * @private */ declare class ValidationException extends BaseException { /** * Create a ValidationException * @param {string} message - the message for the exception * @param {string} component - the optional component which throws this error */ constructor(message: any, component: any); } export = ValidationException;