1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#![deny(missing_docs)]
#![allow(missing_docs)] use ockam_core::{
errcode::{Kind, Origin},
Error,
};
#[derive(Clone, Copy, Debug)]
pub enum OckamError {
BareError = 1,
VerifyFailed,
InvalidInternalState,
InvalidProof,
ConsistencyError, ComplexEventsAreNotSupported,
EventIdDoesNotMatch,
IdentityIdDoesNotMatch,
EmptyChange,
ContactNotFound, EventNotFound,
InvalidChainSequence,
InvalidEventId,
AttestationRequesterDoesNotMatch,
AttestationNonceDoesNotMatch, InvalidHubResponse,
InvalidParameter,
NoSuchProtocol,
SystemAddressNotBound,
SystemInvalidConfiguration,
}
impl ockam_core::compat::error::Error for OckamError {}
impl core::fmt::Display for OckamError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
core::fmt::Debug::fmt(self, f)
}
}
impl From<OckamError> for Error {
#[track_caller]
fn from(err: OckamError) -> Error {
use OckamError::*;
let kind = match err {
SystemAddressNotBound | SystemInvalidConfiguration | InvalidParameter => Kind::Misuse,
_ => Kind::Protocol,
};
Error::new(Origin::Ockam, kind, err)
}
}