TenantAtlas/apps/platform/.pnpm-store/v10/files/8c/1d77978fb99453e85383c18dfc12f5cc997e2a39fbb7552b6532680e0a4a1c493481f2ea5eb3e336dbb8a437abc149d229c54737a23113f59cadf34ad748d9
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
324 B
Plaintext

import { createErrorClass } from './createErrorClass';
export const ArgumentOutOfRangeError = createErrorClass((_super) => function ArgumentOutOfRangeErrorImpl() {
_super(this);
this.name = 'ArgumentOutOfRangeError';
this.message = 'argument out of range';
});
//# sourceMappingURL=ArgumentOutOfRangeError.js.map