diff options
Diffstat (limited to 'src/error.rs')
-rw-r--r-- | src/error.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/error.rs b/src/error.rs new file mode 100644 index 0000000..fa28b1f --- /dev/null +++ b/src/error.rs @@ -0,0 +1,12 @@ +#[derive(Debug, thiserror::Error)] +pub enum Error { + /// Any error originating from the `kube-rs` crate + #[error("Kubernetes reported error: {0}")] + KubeError(#[from] kube::Error), + /// Error in serializing the resticprofile config to TOML + #[error("Error creating resticprofile config: {0}")] + TomlSerializeError(#[from] toml::ser::Error), + /// Missing Namespace + #[error("Namespace not found")] + MissingNamespace, +} |