1
 2
 3
 4
 5
 6
 7
 8
 9
10
#[derive(Debug)]
pub enum BloxError {
	DecodeError,
	ApiError,
	NotFound,
	NotImplemented
}

/// Shortcut for Result<T, BloxError>
pub type BloxResult<T> = Result<T, BloxError>;