UNPKG

@accordproject/concerto-core

Version:

Core Implementation for the Concerto Modeling Language

17 lines (16 loc) 409 B
declare const BaseException: any; /** * Class representing a security exception * @extends BaseException * @see See {@link BaseException} * @class * @memberof module:concerto-core */ declare class SecurityException extends BaseException { /** * Create the SecurityException. * @param {string} message - The exception message. */ constructor(message: any); } export = SecurityException;