# Throw

Throws a developer-specified exception, which can be caught with a catch block.

## Component Signature

```
<bx:Throw message=[any]
type=[String]
detail=[String]
errorcode=[String]
extendedinfo=[any]
object=[Throwable] />
```

### Attributes

| Atrribute      | Type        | Required | Description                                                                                                                                                                                                            | Default |
| -------------- | ----------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| `message`      | `any`       | `false`  | Message that describes exception event                                                                                                                                                                                 |         |
| `type`         | `String`    | `false`  | The type of the exception                                                                                                                                                                                              |         |
| `detail`       | `String`    | `false`  | Description of the event                                                                                                                                                                                               |         |
| `errorcode`    | `String`    | `false`  | A custom error code that you supply                                                                                                                                                                                    |         |
| `extendedinfo` | `any`       | `false`  | Additional custom error data that you supply                                                                                                                                                                           |         |
| `object`       | `Throwable` | `false`  | <p>An instance of an exception object. If there is no message provided, this object will be thrown directly. If there is a message, a<br>CustomException will be thrown and this object will be used as the cause.</p> |         |

## Examples


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://boxlang.ortusbooks.com/boxlang-language/reference/components/system/throw.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
