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

# NumericFaultError

> **참고**: 이 페이지는 아직 한국어로 번역되지 않았습니다. 아래는 영어 원문입니다.

This Error indicates an operation which would result in incorrect arithmetic output has occurred.

For example, trying to divide by zero or using a `uint8` to store a negative value.

## Extends

* [`quaisError`](/ko/sdk/content/interfaces/quaisError)\<`"NUMERIC_FAULT"`>

## Properties

| Property       | Type                                                  | Description                                                                                                                    | Inherited from                                                       |
| :------------- | :---------------------------------------------------- | :----------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------- |
| `code`         | [`ErrorCode`](/ko/sdk/content/type-aliases/ErrorCode) | The string error code.                                                                                                         | [`quaisError`](/ko/sdk/content/interfaces/quaisError).`code`         |
| `error?`       | `Error`                                               | Any related error.                                                                                                             | [`quaisError`](/ko/sdk/content/interfaces/quaisError).`error`        |
| `fault`        | `string`                                              | The fault reported.                                                                                                            | -                                                                    |
| `info?`        | `Record`\<`string`, `any`>                            | Additional info regarding the error that may be useful.<br /><br />This is generally helpful mostly for human-based debugging. | [`quaisError`](/ko/sdk/content/interfaces/quaisError).`info`         |
| `operation`    | `string`                                              | The attempted operation.                                                                                                       | -                                                                    |
| `shortMessage` | `string`                                              | A short message describing the error, with minimal additional details.                                                         | [`quaisError`](/ko/sdk/content/interfaces/quaisError).`shortMessage` |
| `value`        | `any`                                                 | The value the operation was attempted against.                                                                                 | -                                                                    |
