pub type Error = Error;
enum Error {
NoSuchStore,
AccessDenied,
Other(String),
}
The host does not recognize the store identifier requested.
The requesting component does not have access to the specified store
(which may or may not exist).
Some implementation-specific error has occurred (e.g. I/O)