Skip to content

Commit d59b268

Browse files
committed
feat(law): impl into StdError on ContractError
1 parent 7eccc7a commit d59b268

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

contracts/cw-law-stone/src/error.rs

+10
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ use cw_utils::ParseReplyError;
33
use serde_json_wasm::de::Error;
44
use thiserror::Error;
55
use url::ParseError;
6+
use crate::ContractError::Std;
67

78
#[derive(Error, Debug, PartialEq)]
89
pub enum ContractError {
@@ -47,3 +48,12 @@ pub enum UriError {
4748
#[error("The given query is not compatible")]
4849
IncompatibleQuery,
4950
}
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

Comments
 (0)