# at.inlay.Throw

> Published by [inlay.at](https://lexicon.garden/identity/did:plc:mdg3w2kpadcyxy33pizokzf3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Throw)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Throw/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mdg3w2kpadcyxy33pizokzf3/at.inlay.Throw/examples)

## Definitions

### `at.inlay.Throw`

**Type**: `procedure`

Error node produced when component resolution fails. The host decides how to render it.

#### Input

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `stack` | `string` | No | Stack trace, if available |
| `message` | `string` | Yes | Human-readable error message |

#### Output

**Encoding**: `application/json`

## Raw Schema

```json
{
  "id": "at.inlay.Throw",
  "defs": {
    "main": {
      "type": "procedure",
      "input": {
        "schema": {
          "type": "object",
          "required": [
            "message"
          ],
          "properties": {
            "stack": {
              "type": "string",
              "maxLength": 10000,
              "description": "Stack trace, if available"
            },
            "message": {
              "type": "string",
              "maxLength": 10000,
              "description": "Human-readable error message"
            }
          }
        },
        "encoding": "application/json"
      },
      "output": {
        "schema": {
          "ref": "at.inlay.defs#response",
          "type": "ref"
        },
        "encoding": "application/json"
      },
      "description": "Error node produced when component resolution fails. The host decides how to render it."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
