# FormatError

> Kinds of format errors.

## Definition

* **Type:** Enum
* **Namespace:** [Unity.Collections](/engine/6000.7/script-reference/unity/collections.md)
* **Assembly:** UnityEngine.ManagedKernelModule

```csharp
public enum FormatError
```

## Fields

| Value                                                                                                     | Description                                                                                                                                                            |
| --------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [BadFormatSpecifier](/engine/6000.7/script-reference/unity/collections/formaterror/badformatspecifier.md) | The source format specifier is not itself correctly formatted, or a format specifier tokens were found outside of accepted usage. Note that the format's write failed. |
| [None](/engine/6000.7/script-reference/unity/collections/formaterror/none.md)                             | No error.                                                                                                                                                              |
| [Overflow](/engine/6000.7/script-reference/unity/collections/formaterror/overflow.md)                     | The target storage does not have sufficient capacity. Note that the format's write failed. It did not truncate.                                                        |
