TenantAtlas/apps/platform/.pnpm-store/v10/files/2c/89059cd3f8cffefb91ce61c38e5bdefe19356dba6e82d6658ab6fc183f8de8d7144b7bfdf75e73e0b169826794ecead792d1361192d30b7bcab8d8c5c09a7e
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
311 B
Plaintext

import { createErrorClass } from './createErrorClass';
export var NotFoundError = createErrorClass(function (_super) {
return function NotFoundErrorImpl(message) {
_super(this);
this.name = 'NotFoundError';
this.message = message;
};
});
//# sourceMappingURL=NotFoundError.js.map