Codenic Exception Converter

What does it do?
The Codenic Exception Converter package provides a utility tool for converting Exception into Failure objects.
By converting exceptions into failure objects, the program can handle exceptions in a more generic way, rather than being tied to the specific details of a particular technology or framework. This can make it easier to write code that is more portable and easier to maintain, as it is not tied to the specifics of any particular technology.
This tool includes the following classes for conveniently converting Exceptions into Failures:
The base class of all Failure objects.
A task observer class for converting a particular Exception into a Failure (must be paired with an Exception Converter Suite).
A task observer with a collection of Exception Converters for converting any Exceptions into their respective Failures.
Installation
1. Add the dependency
Add the Dart package in your pubspec.yaml by running the following command in the root of your project:
dart pub add codenic_exception_converter2. Build your app
Install the package by calling:
dart pub getNext Steps
Once installed, view the Usage documentation to get started.
Last updated