TenantAtlas/apps/platform/.pnpm-store/v10/files/79/fb050f4a911244bb19f77361121f9d60167a59b3a0320c186db4a87621d3d54c1b3fe9197d344cd35aee97a0c330dcd083813c9f8df0a17c73491ae625a2b9
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

9 lines
310 B
Plaintext

import { createErrorClass } from './createErrorClass';
export var EmptyError = createErrorClass(function (_super) {
return function EmptyErrorImpl() {
_super(this);
this.name = 'EmptyError';
this.message = 'no elements in sequence';
};
});
//# sourceMappingURL=EmptyError.js.map