@jems/di
Version:
An implementation of IoC pattern based on dependency injection that allows you to granulate and decouple your libraries or applications. Wrote using SOLID principles and a variety OOP patterns implementations.
19 lines (18 loc) • 391 B
TypeScript
/**
* Represents the base error.
*/
export declare class BaseError {
/**
* Represents the name of the error.
*/
name: string;
/**
* Represents the message of the error.
*/
message: string;
/**
* Instantiate the error with the given message.
* @param message Represents the message of the error.
*/
constructor(message: string);
}