@fjell/core 4.4.53 → 4.4.55
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1885,6 +1885,9 @@ function createGetWrapper(coordinate, implementation, options = {}) {
|
|
|
1885
1885
|
};
|
|
1886
1886
|
throw options.onError(error, context);
|
|
1887
1887
|
}
|
|
1888
|
+
if (error instanceof NotFoundError) {
|
|
1889
|
+
throw error;
|
|
1890
|
+
}
|
|
1888
1891
|
throw new Error(
|
|
1889
1892
|
`[${operationName}] Operation failed: ${error.message}`,
|
|
1890
1893
|
{ cause: error }
|