1use fidl_fuchsia_component as fcomponent;
5
6#[derive(Debug, thiserror::Error)]
7pub enum Error {
8 #[error(
9 "namespace {prefix} should have exactly one entry but it has {count}. This suggests a \
10 bug in the namespace protocol."
11 )]
12 InvalidNamespaceEntryCount { prefix: String, count: usize },
13
14 #[error("namespace creation failed: {0:?}")]
15 NamespaceCreation(fcomponent::NamespaceError),
16
17 #[error("the namespace is not installed: {0:?}")]
18 NamespaceNotInstalled(#[source] zx::Status),
19
20 #[error("binding the namespace failed: {0:?}")]
21 NamespaceBind(#[source] zx::Status),
22
23 #[error(
24 "namespace {prefix} contains incomplete entry. This suggests a bug in the namespace \
25 protocol {message}"
26 )]
27 EntryIncomplete { prefix: String, message: String },
28
29 #[error(
30 "namespace {prefix} does not match path. This suggests a bug in the namespace protocol. \
31 Path was {path}"
32 )]
33 PrefixDoesNotMatchPath { prefix: String, path: String },
34
35 #[error("failed to connect to protocol: {0}")]
36 ConnectionFailed(String),
37
38 #[error("fidl error")]
39 Fidl(#[from] fidl::Error),
40
41 #[error("operation failed: {0:?}")]
42 OperationError(fidl_fuchsia_testing_harness::OperationError),
43}