FormatErrorAction
Determines how format errors are handled.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Enum
- Namespace: Unity.SmartStrings.Core.Settings
- Assembly: UnityEngine.SmartStringsModule
public enum FormatErrorAction
Fields
Value | Description |
|---|---|
| Ignore | Ignores errors and tries to output the data anyway. |
| MaintainTokens | Leaves invalid tokens unmodified in the text. |
| OutputErrorInResult | Includes an issue message in the output. |
| ThrowError | Throws an exception. This is only recommended for debugging, so that formatting errors can be easily found. |