1// This is free and unencumbered software released into the public domain.
23use derive_more::Display;
45#[derive(Clone, Debug, Display, Eq, PartialEq)]
6pub enum KeyError {
7 EmptyInput,
8 InvalidLength,
9 InvalidPrefix,
10 InvalidEncoding(bs58::decode::Error),
11}