cp_core/
error_kind.rs

1/*
2 * Copyright (c) Gabriel Amihalachioaie, SimpleG 2023.
3 */
4
5pub const SERIALIZATION_FAILURE: &str = "serialization_failure";
6pub const SECRETS_MANAGER_FAILURE: &str = "secrets_manager_failure";
7pub const REQUEST_FAILURE: &str = "request_failure";
8pub const TIMED_OUT: &str = "timed_out";
9pub const COMPRESSION_FAILURE: &str = "compression_failure";
10pub const NOT_FOUND: &str = "not_found";
11pub const NOT_IMPLEMENTED: &str = "not_implemented";