1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Crate-wide errors.
//!
//! The error handling in `ipfs` is subject to change in the future.

/// Just re-export anyhow for now.
///
/// # Stability
///
/// Very likely to change in the future.
pub use anyhow::Error;

/// A try conversion failed.
///
/// # Stability
///
/// Very likely to change in the future.
pub struct TryError;