asyncredux-user-exceptions
Installation
SKILL.md
UserException in AsyncRedux
UserException is a special error type for user-facing errors that should be displayed to the user rather than logged as bugs. These represent issues the user can address or should be informed about.
Throwing UserException from Actions
Throw UserException when an action encounters a user-facing error:
class TransferMoney extends AppAction {
final double amount;
TransferMoney(this.amount);