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
Copying (with a little rephrasing) discussion from #131 to a new issue here.
Is your feature request related to a problem? Please describe.
We should allow the user to control whether an exception should be ignored or not, if raised in a decorator.
E.g. I can't configure a decorator that if failing, it will stop the execution.
Describe the solution you'd like
If RecoverableDecoratorError is raised it will be ignored, all other exceptions are caught and raised in the decorator runner.
Describe alternatives you've considered
We could introduce a new exception type NoRecoverableDecoratorError that can be raised within a decorator, that will halt the execution.
Copying (with a little rephrasing) discussion from #131 to a new issue here.
Is your feature request related to a problem? Please describe.
We should allow the user to control whether an exception should be ignored or not, if raised in a decorator.
E.g. I can't configure a decorator that if failing, it will stop the execution.
Describe the solution you'd like
If
RecoverableDecoratorError
is raised it will be ignored, all other exceptions are caught and raised in the decorator runner.Describe alternatives you've considered
We could introduce a new exception type
NoRecoverableDecoratorError
that can be raised within a decorator, that will halt the execution.Additional context
Discussion in PR: #131 (comment)
The text was updated successfully, but these errors were encountered: