//! [`Error`] implementations for [`StringError`]
// Std
use Error;
use Backtrace;
// Crate
use crate::;
/// Default `Error` impl for any all `StringError<E, B>`
/// Specialization `Error` implementation for `Error + 'static` types
/// Note: `E` can't be `?Sized` because the pointer we'd return is a fat pointer
/// with the size and the vtable, which itself is `?Sized`