> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/callable/callable.throw_instructions.md).

# Callable.throw\_instructions()

`throw_instructions() →` [`Instructions`](/glider-ide/api/instructions.md)

## Query Example&#x20;

```python
from glider import *


def query():
  functions = Functions().with_name("setTokenExchangeRate").exec(1)

  throw_instructions = []
  for function in functions:
    for instruction in function.throw_instructions().exec():
      # Return the throw instructions for each function
      throw_instructions.append(instruction)

  return throw_instructions
```

## Example Output

<figure><img src="/files/cc4Ddy1NEtxpC3jsRjoL" alt=""><figcaption></figcaption></figure>
