@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) • 396 B
TypeScript
/**
* Signals that an operation does not have a proper implementation.
*
* @export
* @class NotImplementedError
* @extends {Error}
*/
export declare class NotImplementedError extends Error {
/**
* Creates an instance of NotImplementedError.
* @param {string} message The error message.
* @memberof ArgumentError
*/
constructor(message: string);
}