TenantAtlas/apps/platform/.pnpm-store/v10/files/3e/77b1bbbd3d5a3fa3ebad70f7cf97a2217e0a063957da8674e660518bd46b17d3e2dc35e1b7670c33939c103863e2fdbd7a733eb427e5ca8b27eacc926b1995
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 NotFoundError = createErrorClass((_super) => function NotFoundErrorImpl(message) {
_super(this);
this.name = 'NotFoundError';
this.message = message;
});
//# sourceMappingURL=NotFoundError.js.map