nostr_nostd/errors.rs
1//! Possible errors thrown by this crate
2
3#[derive(PartialEq, Debug)]
4pub enum Error {
5 InvalidPubkey,
6 InvalidPrivkey,
7 InternalPubkeyError,
8 InternalSigningError,
9 TagNameTooLong,
10 UnknownKind,
11 InvalidType,
12 TypeNotAccepted,
13 MalformedContent,
14 ContentOverflow,
15 EventNotValid,
16 EventMissingField,
17 TooManyTags,
18 InternalError,
19 EncodeError,
20 Secp256k1Error,
21 QueryBuilderOverflow,
22}