@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) • 373 B
TypeScript
/**
* Signals an error with respect to a service or its registration.
*
* @export
* @class ServiceError
* @extends {Error}
*/
export declare class ServiceError extends Error {
/**
* Creates an instance of ServiceError.
* @param {string} message The error message.
* @memberof ServiceError
*/
constructor(message: string);
}