Skip to main content

rns_core/
error.rs

1#[derive(Debug)]
2pub enum RnsError {
3    OutOfMemory,
4    InvalidArgument,
5    IncorrectSignature,
6    IncorrectHash,
7    CryptoError,
8    PacketError,
9    ConnectionError,
10}