@gati-framework/runtime
Version:
Gati runtime execution engine for running handler-based applications
18 lines • 423 B
JavaScript
/**
* @module runtime/types/secrets-manager
* @description Type definitions for secrets management system
*/
/**
* Secrets manager error
*/
export class SecretsManagerError extends Error {
key;
cause;
constructor(message, key, cause) {
super(message);
this.key = key;
this.cause = cause;
this.name = 'SecretsManagerError';
}
}
//# sourceMappingURL=secrets-manager.js.map