Module error

Module error 

Source
Expand description

Shared error types across wsPrism crates.

These errors form the stable surface area that the gateway can turn into client-facing responses (e.g., sys.error envelopes) while keeping internal implementation details encapsulated.

Design goal: All fallible operations in core should return WsPrismError rather than panic. Combined with crate-level lint denies for panic/unwrap, this keeps production code resilient to malformed or hostile input.

Enums§

ClientCode
Stable client-facing error codes.
WsPrismError
Unified error type used by core and gateway layers.

Type Aliases§

Result
Convenient result alias for core operations.