> ## Documentation Index
> Fetch the complete documentation index at: https://docs.assistantscenter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Error

> An Object which contains all the error information.

```js theme={null}
theme: SoftUI({
  error: {
    error404: {
      title: String,
      subtitle: String,
      description:
        String,
    },
    dbdError: {
      disableSecretMenu: Boolean,
      secretMenuCombination: String[],
    },
  },
});
```

## Example Usage

```js theme={null}
theme: SoftUI({
  error: {
    error404: {
      title: "Error 404",
      subtitle: "Page Not Found",
      description:
        "It seems you have stumbled into the abyss. Click the button below to return to the dashboard",
    },
    dbdError: {
      disableSecretMenu: false,
      secretMenuCombination: ["69", "82", "82", "79", "82"],
    },
  },
});
```

## Image

<Frame>
  <img src="https://mintcdn.com/assistantscenter/e0fzjuWUPc5-sSJC/images/content/error.jpg?fit=max&auto=format&n=e0fzjuWUPc5-sSJC&q=85&s=f475315c6e694d6cfc5dd9a23f3ce8ff" width="2336" height="1359" data-path="images/content/error.jpg" />
</Frame>

## Props

<ResponseField name="error404" type="Object">
  <Expandable title="properties" defaultOpen>
    <ResponseField name="title" type="string" required>
      The title of the error 404 page
    </ResponseField>

    <ResponseField name="subtitle" type="string" required>
      The subtitle of the error 404 page
    </ResponseField>

    <ResponseField name="description" type="string" required>
      The description shown on the error 404 page
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="dbdError" type="Object">
  <Expandable title="properties" defaultOpen>
    <ResponseField name="disableSecretMenu" type="boolean" required>
      Indicate if the secret keybind should be disabled
    </ResponseField>

    <ResponseField name="secretMenuCombination" type="string[]" required>
      The key combination to view the secret menu
    </ResponseField>
  </Expandable>
</ResponseField>
