TenantAtlas/apps/platform/.pnpm-store/v10/files/e2/aeff0c27d7d2f2b0740e141df9c938e92ed18bdf695f8c6b0444a151734f3a4b00893ddbb0c2d09094795f733afc9e252b289ec78ceec63c0209db811f8baa
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
275 B
Plaintext

import { createErrorClass } from './createErrorClass';
export const SequenceError = createErrorClass((_super) => function SequenceErrorImpl(message) {
_super(this);
this.name = 'SequenceError';
this.message = message;
});
//# sourceMappingURL=SequenceError.js.map