aboutsummaryrefslogtreecommitdiff
path: root/src/private/cast/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/private/cast/error.rs')
-rw-r--r--src/private/cast/error.rs20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/private/cast/error.rs b/src/private/cast/error.rs
deleted file mode 100644
index c6ed01d..0000000
--- a/src/private/cast/error.rs
+++ /dev/null
@@ -1,20 +0,0 @@
-use crate::private::cast::{CasterError, GetCasterError};
-
-#[derive(thiserror::Error, Debug)]
-pub enum CastError
-{
- #[error("Failed to get caster")]
- GetCasterFailed(#[from] GetCasterError),
-
- #[error("Failed to cast from {from} to {to}")]
- CastFailed
- {
- #[source]
- source: CasterError,
- from: &'static str,
- to: &'static str,
- },
-
- #[error("'{0}' can't be cast to an Arc")]
- NotArcCastable(&'static str),
-}