summaryrefslogtreecommitdiff
path: root/candle-core/src/error.rs
diff options
context:
space:
mode:
authorLaurent Mazare <laurent.mazare@gmail.com>2023-07-26 15:42:46 +0100
committerGitHub <noreply@github.com>2023-07-26 15:42:46 +0100
commit1235aa25360081607ccb2795a934a675868ce9ba (patch)
treeb61c3530755cdcb34856ab2287bbf559213af7d3 /candle-core/src/error.rs
parentf052ba76cbf88f8e4f9fe38e76f7a2673da6b5f2 (diff)
downloadcandle-1235aa25360081607ccb2795a934a675868ce9ba.tar.gz
candle-1235aa25360081607ccb2795a934a675868ce9ba.tar.bz2
candle-1235aa25360081607ccb2795a934a675868ce9ba.zip
Use bail rather than wrapping a string where possible. (#249)
* Use bail rather than wrapping a string where possible. * Revert the cuda default bit.
Diffstat (limited to 'candle-core/src/error.rs')
-rw-r--r--candle-core/src/error.rs11
1 files changed, 8 insertions, 3 deletions
diff --git a/candle-core/src/error.rs b/candle-core/src/error.rs
index 3f860fb0..f9e69122 100644
--- a/candle-core/src/error.rs
+++ b/candle-core/src/error.rs
@@ -174,6 +174,7 @@ pub enum Error {
#[error("unsupported safetensor dtype {0:?}")]
UnsupportedSafeTensorDtype(safetensors::Dtype),
+ /// Arbitrary errors wrapping.
#[error(transparent)]
Wrapped(Box<dyn std::error::Error + Send + Sync>),
@@ -182,6 +183,10 @@ pub enum Error {
inner: Box<Self>,
backtrace: Box<std::backtrace::Backtrace>,
},
+
+ /// User generated error message, typically created via `bail!`.
+ #[error("{0}")]
+ Msg(String),
}
pub type Result<T> = std::result::Result<T, Error>;
@@ -207,12 +212,12 @@ impl Error {
#[macro_export]
macro_rules! bail {
($msg:literal $(,)?) => {
- return Err($crate::Error::Wrapped(format!($msg).into()).bt())
+ return Err($crate::Error::Msg(format!($msg).into()).bt())
};
($err:expr $(,)?) => {
- return Err($crate::Error::Wrapped(format!($err).into()).bt())
+ return Err($crate::Error::Msg(format!($err).into()).bt())
};
($fmt:expr, $($arg:tt)*) => {
- return Err($crate::Error::Wrapped(format!($fmt, $($arg)*).into()).bt())
+ return Err($crate::Error::Msg(format!($fmt, $($arg)*).into()).bt())
};
}