# `Plushie.Event.WidgetCommandError`
[🔗](https://github.com/plushie-ui/plushie-elixir/blob/v0.6.0/lib/plushie/event/widget_command_error.ex#L1)

Renderer error for a native widget command.

Emitted when the renderer cannot deliver or execute an `widget_command`.

## Fields

  * `reason` - machine-readable reason from the renderer
  * `node_id` - target widget node ID
  * `op` - command operation name
  * `extension` - native widget type when known
  * `message` - human-readable error text

# `t`

```elixir
@type t() :: %Plushie.Event.WidgetCommandError{
  extension: String.t() | nil,
  message: String.t() | nil,
  node_id: String.t() | nil,
  op: String.t() | nil,
  reason: String.t()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
