// SPDX-License-Identifier: CC0-1.0
//! # Error
//!
//! Error handling macros and helpers.
//!
pub use InputString;
/// Formats error.
///
/// If `std` feature is OFF appends error source (delimited by `: `). We do this because
/// `e.source()` is only available in std builds, without this macro the error source is lost for
/// no-std builds.