Expand description
Shared, FFI-independent error type for the language bindings.
Each binding historically defined its own error plumbing (a PyException
wrapper, a napi::Error helper, a magnus Error, a PhpException, a
JsValue), all of them message-only. This module provides a single
CoreError carrying an ErrorKind category plus a message, so each
binding can keep just one From<CoreError> conversion into its native
exception type.
Structs§
- Core
Error - An FFI-independent error shared by all Lindera language bindings.
Enums§
- Error
Kind - Category of a binding-facing error.
Type Aliases§
- Core
Result - A convenient
Resultalias for binding-core operations.