#[derive(Clone, Copy, Debug)]
pub enum EntityError {
None,
BareError,
VerifyFailed,
InvalidInternalState,
InvalidProof,
ConsistencyError,
ComplexEventsAreNotSupported,
EventIdDoesntMatch,
ProfileIdDoesntMatch,
EmptyChange,
ContactNotFound,
EventNotFound,
InvalidChainSequence,
InvalidEventId,
AttestationRequesterDoesntMatch,
AttestationNonceDoesntMatch,
InvalidHubResponse,
InvalidParameter,
SecureChannelVerificationFailed,
SecureChannelTrustCheckFailed,
SecureChannelCannotBeAuthenticated,
ProfileInvalidResponseType,
ProfileNotFound,
NotImplemented,
UnknownChannelMsgDestination,
UnknownChannelMsgOrigin,
InvalidLocalInfoType,
InvalidSecureChannelInternalState,
IdentityApiFailed,
ContactVerificationFailed,
InvalidProfileId,
}
impl EntityError {
pub const DOMAIN_CODE: u32 = 20_000;
pub const DOMAIN_NAME: &'static str = "OCKAM_ENTITY";
}
impl From<EntityError> for ockam_core::Error {
fn from(e: EntityError) -> ockam_core::Error {
ockam_core::Error::new(
EntityError::DOMAIN_CODE + (e as u32),
EntityError::DOMAIN_NAME,
)
}
}