TenantAtlas/apps/platform/.pnpm-store/v10/files/c9/bfd3dd03d1761928b17a4e4c9679502208001e2cce84f28cd7e501c725bbd353b9092e3a435c116864247bd1b33b90bb098621dfcb838afad74c121a729bd7
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

7 lines
274 B
Plaintext

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