chore: Add base32 error

This commit is contained in:
Awiteb 2024-05-11 13:53:37 +03:00
parent 00128a7957
commit 835504eeb9
Signed by: awiteb
GPG key ID: 3F6B55640AA6682F

View file

@ -44,6 +44,8 @@ pub enum Error {
custom fields {0}" custom fields {0}"
)] )]
ReservedPrefix(&'static str), ReservedPrefix(&'static str),
#[error("Base32 Error: {0}")]
Base32(String),
#[error("{0}")] #[error("{0}")]
Other(String), Other(String),