summaryrefslogtreecommitdiff
path: root/dichroism/src/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'dichroism/src/error.rs')
-rw-r--r--dichroism/src/error.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/dichroism/src/error.rs b/dichroism/src/error.rs
deleted file mode 100644
index 0cdd269..0000000
--- a/dichroism/src/error.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-#[derive(Debug)]
-pub enum DichroismError {
- UriDataExtract(String),
- ImageWrite(String),
-}
-
-impl std::error::Error for DichroismError {}
-
-impl std::fmt::Display for DichroismError {
- fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
- write!(f, "{}", self)
- }
-}
-
-impl From<image::ImageError> for DichroismError {
- fn from(e: image::ImageError) -> Self {
- Self::ImageWrite(e.to_string())
- }
-}
-
-impl From<base64::DecodeError> for DichroismError {
- fn from(e: base64::DecodeError) -> Self {
- Self::UriDataExtract(e.to_string())
- }
-}