Skip to main content

fastmcp_console/error/
mod.rs

1//! Error handling utilities with automatic rich display.
2//!
3//! This module provides the [`ErrorBoundary`] type that wraps operations
4//! and automatically displays errors beautifully on failure using the
5//! configured console and theme.
6
7mod boundary;
8
9pub use boundary::ErrorBoundary;