@kephas/core
Version:
Provides a common infrastructure for all the other Kephas Framework components: ambient services, dynamic reflection, composition, application management, and others.
16 lines (15 loc) • 369 B
TypeScript
/**
* Signals that an operation is not supported.
*
* @export
* @class NotSupportedError
* @extends {Error}
*/
export declare class NotSupportedError extends Error {
/**
* Creates an instance of NotSupportedError.
* @param {string} message The error message.
* @memberof ArgumentError
*/
constructor(message: string);
}