dpp/errors/consensus/state/identity/
mod.rs

1pub use identity_already_exists_error::*;
2pub use identity_insufficient_balance_error::*;
3
4pub mod duplicated_identity_public_key_id_state_error;
5pub mod duplicated_identity_public_key_state_error;
6mod identity_already_exists_error;
7mod identity_insufficient_balance_error;
8pub mod identity_public_key_already_exists_for_unique_contract_bounds_error;
9pub mod identity_public_key_is_disabled_error;
10pub mod identity_public_key_is_read_only_error;
11pub mod invalid_identity_contract_nonce_error;
12pub mod invalid_identity_public_key_id_error;
13pub mod invalid_identity_revision_error;
14pub mod master_public_key_update_error;
15pub mod max_identity_public_key_limit_reached_error;
16pub mod missing_identity_public_key_ids_error;
17pub mod missing_transfer_key_error;
18pub mod no_transfer_key_for_core_withdrawal_available_error;
19
20pub mod identity_for_token_configuration_not_found_error;
21pub mod identity_to_freeze_does_not_exist_error;
22mod recipient_identity_does_not_exist_error;
23
24pub use recipient_identity_does_not_exist_error::*;