Skip to main content

Module error

Module error 

Source
Expand description

Typed error enum for A3S Code Core

Provides categorized errors that SDK consumers can match on programmatically, instead of receiving opaque anyhow::Error strings.

§Migration Strategy

The Internal variant wraps anyhow::Error via #[from], allowing gradual migration: call sites that haven’t been updated yet auto-convert through ?. Over time, each call site replaces anyhow::anyhow!(...) with a specific variant like CodeError::Config(...).

Enums§

CodeError
Categorized error type for A3S Code Core.

Type Aliases§

Result
Crate-wide result type alias.