We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In a number of instance, API methods are described as returning errors with a given error string.
For example, the description for open is as follows:
If opening errors, it returns an Error with a string from the OpenError enumeration.
The open method returns a Promise, as a result, it doesn't return an error, instead, the Promise is rejected with a resultant value.
open
Notably, a few container implementations don't reject Error types, instead they reject with the resultant string value.
Error
The text was updated successfully, but these errors were encountered:
See also: finos/FDC3-conformance-framework#53
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
In a number of instance, API methods are described as returning errors with a given error string.
For example, the description for open is as follows:
The
open
method returns a Promise, as a result, it doesn't return an error, instead, the Promise is rejected with a resultant value.Notably, a few container implementations don't reject
Error
types, instead they reject with the resultant string value.The text was updated successfully, but these errors were encountered: