#[cfg(feature = "alloc")]
use alloc::string::String;
#[derive(Debug, thiserror::Error)]
#[non_exhaustive]
pub enum DeriveError {
#[error(transparent)]
Core(#[from] kobe_primitives::DeriveError),
#[cfg(feature = "alloc")]
#[error("bech32m encoding: {0}")]
Bech32(String),
}