casper_storage/system/
error.rs

1use casper_types::account::AccountHash;
2
3/// Implementation level errors for system contract providers
4#[derive(Debug)]
5pub enum ProviderError {
6    /// System contract registry.
7    SystemEntityRegistry,
8    /// Account hash.
9    AccountHash(AccountHash),
10}