aboutsummaryrefslogtreecommitdiffstats
path: root/src/finder/error.rs
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-11-03 16:47:57 -0500
committerToby Vincent <tobyv13@gmail.com>2022-11-03 16:47:57 -0500
commitc81eb9a1a542cc058960cf4eab12fc70bc2a81eb (patch)
tree8deff281230dbdedea29299060e214f1bb685cf7 /src/finder/error.rs
parent53d0cefcb1ca3527935479cc07a6f5fe5b1f8051 (diff)
feat: impl finder
Diffstat (limited to 'src/finder/error.rs')
-rw-r--r--src/finder/error.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/finder/error.rs b/src/finder/error.rs
new file mode 100644
index 0000000..46d39c4
--- /dev/null
+++ b/src/finder/error.rs
@@ -0,0 +1,11 @@
+pub type Result<T> = std::result::Result<T, Error>;
+
+#[derive(thiserror::Error, Debug)]
+pub enum Error {
+ #[error("IO error: {0:?}")]
+ IO(#[from] std::io::Error),
+
+ #[error("Stdin error: Failed to get finder's stdin")]
+ Stdin,
+}
+