@accordproject/concerto-core
Version:
Core Implementation for the Concerto Modeling Language
17 lines (16 loc) • 432 B
TypeScript
declare const BaseException: any;
/**
* Class representing an invalid Metamodel instance (JSON AST)
* @extends BaseException
* @see See {@link BaseException}
* @class
* @memberof module:concerto-core
*/
declare class MetamodelException extends BaseException {
/**
* Create the MetamodelException.
* @param {string} message - The exception message.
*/
constructor(message: any);
}
export = MetamodelException;