You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to access a plugin feature in a dataset that does not contain a features required feature, the only error raised is "Feature 'FEATURE_NAME' does not exist!" from dclab.rtdc_dataset.core.__getitem__. This is currently expected, but would it be reasonable to have a more specific exception?
The text was updated successfully, but these errors were encountered:
A verbose error message would have to name all the ancillary features that implement the feature and a message that states the user should check whether all conditions for that feature are met (e.g. print req_required, config_required, etc.). There are also custom functions a plugin feature may implement.
There are also custom functions a plugin feature may implement.
By this do you mean the "method check required" or some function that for example just checks that the correct features are available in the rtdc_ds?
If you mean the latter, when I tried, the plugin didn't raise the error I expected. I will recheck this and if the problem persists then I will paste the copy here...
When trying to access a plugin feature in a dataset that does not contain a
features required
feature, the only error raised is"Feature 'FEATURE_NAME' does not exist!"
fromdclab.rtdc_dataset.core.__getitem__
. This is currently expected, but would it be reasonable to have a more specific exception?The text was updated successfully, but these errors were encountered: