We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eccc7a commit d59b268Copy full SHA for d59b268
contracts/cw-law-stone/src/error.rs
@@ -3,6 +3,7 @@ use cw_utils::ParseReplyError;
3
use serde_json_wasm::de::Error;
4
use thiserror::Error;
5
use url::ParseError;
6
+use crate::ContractError::Std;
7
8
#[derive(Error, Debug, PartialEq)]
9
pub enum ContractError {
@@ -47,3 +48,12 @@ pub enum UriError {
47
48
#[error("The given query is not compatible")]
49
IncompatibleQuery,
50
}
51
+
52
+impl Into<StdError> for ContractError {
53
+ fn into(self) -> StdError {
54
+ match self {
55
+ Std(e) => e,
56
+ _ => StdError::generic_err(self.to_string()),
57
+ }
58
59
+}
0 commit comments