@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) • 345 B
TypeScript
/**
* Signals an injection error.
*
* @export
* @class InjectionError
* @extends {Error}
*/
export declare class InjectionError extends Error {
/**
* Creates an instance of InjectionError.
* @param {string} message The error message.
* @memberof InjectionError
*/
constructor(message: string);
}