Overview
- Error type that carries parsed Move VM error metadata.
- Thrown by transaction helpers on Move VM failures.
- Use
instanceof MoveErrorto identify and handle Move VM errors separately.
Quickstart
Properties
Notes
- Use
instanceof MoveErrorto branch UI or logging based on Move-specific metadata (moduleAddress,moduleName,errorCode). originalErrorcontains the original error with full message and stack trace.isFromRegistryindicates whether the error message was resolved from the Initia error registry (more user-friendly whentrue).