Exception Converter
The ExceptionConverter
class allows you to map a specific Exception
to a particular Failure object. While a single ExceptionConverter
may not be very useful on its own, you can use a group of exception converters together in an ExceptionConverterSuite to run a task and automatically convert any exceptions that are thrown into the appropriate Failure
object.
Exception converter is integrated with the Codenic Logger to provide logging capabilities to the executable task.
To create an Exception Converter, create a class that extends the ExceptionConverter
class:
Last updated