ts-ioc-container
Version:
Fast, lightweight TypeScript dependency injection container with a clean API, scoped lifecycles, decorators, tokens, hooks, lazy injection, customizable providers, and no global container objects.
13 lines (12 loc) • 467 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ContainerNotFoundError = void 0;
const ContainerError_1 = require("./ContainerError");
class ContainerNotFoundError extends ContainerError_1.ContainerError {
name = 'ContainerNotFoundError';
constructor(message) {
super(message);
Object.setPrototypeOf(this, ContainerNotFoundError.prototype);
}
}
exports.ContainerNotFoundError = ContainerNotFoundError;