Error Handling Flashcards
How can a regular route and an error handler route be distinguished?
An error handler route is composed of transparent circles, while a regular route is composed of solid circles.
What are the 5 error handling directives?
Resume
Ignore
Break
Rollback
Commit
Which error handler directive allows you to specify a substitute output for the module with the error and mark the execution as successful?
Resume
Which error handler directive ignores the error and marks the execution as successful?
Ignore
Which error handler directive stores the input to the queue of incomplete executions and marks the execution as a warning?
Break
Which error handler directive stops the execution immediately and marks it as an error?
Rollback
Which error handler directive stops the execution immediately and marks it as successful?
Commit
Can a filter be added to an error handler route?
Yes
Can an error handler be created from a router module?
No