skills/smithery.ai/asyncredux-user-exceptions

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);
Installs
1
First Seen
Apr 5, 2026
asyncredux-user-exceptions from smithery.ai