blob: 0671a8bb842997622f776f55885947d2a217e1e3 [file] [log] [blame]
//! Error types
use core::fmt;
const INVALID_ENCODING_MSG: &str = "invalid Base64 encoding";
const INVALID_LENGTH_MSG: &str = "insufficient output buffer length";
/// Insufficient output buffer length.
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub struct InvalidLengthError;
impl fmt::Display for InvalidLengthError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
f.write_str(INVALID_LENGTH_MSG)
}
}
#[cfg(feature = "std")]
impl std::error::Error for InvalidLengthError {}
/// Invalid encoding of provided Base64 string.
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub struct InvalidEncodingError;
impl fmt::Display for InvalidEncodingError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
f.write_str(INVALID_ENCODING_MSG)
}
}
#[cfg(feature = "std")]
impl std::error::Error for InvalidEncodingError {}
/// Generic error, union of [`InvalidLengthError`] and [`InvalidEncodingError`].
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum Error {
/// Invalid encoding of provided Base64 string.
InvalidEncoding,
/// Insufficient output buffer length.
InvalidLength,
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
let s = match self {
Self::InvalidEncoding => INVALID_ENCODING_MSG,
Self::InvalidLength => INVALID_LENGTH_MSG,
};
f.write_str(s)
}
}
impl From<InvalidEncodingError> for Error {
#[inline]
fn from(_: InvalidEncodingError) -> Error {
Error::InvalidEncoding
}
}
impl From<InvalidLengthError> for Error {
#[inline]
fn from(_: InvalidLengthError) -> Error {
Error::InvalidLength
}
}
#[cfg(feature = "std")]
impl std::error::Error for Error {}