@carlosv2/glue
Version:
Dependency injection library that stays out of the way
11 lines (10 loc) • 336 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AliasNotFoundError = void 0;
const error_1 = require("../error");
class AliasNotFoundError extends error_1.DiError {
constructor(id) {
super(`Alias definition ${id} was not found`);
}
}
exports.AliasNotFoundError = AliasNotFoundError;