mirror of
https://github.com/fluencelabs/fluid
synced 2025-06-22 17:41:32 +00:00
6 lines
102 B
Rust
6 lines
102 B
Rust
![]() |
use std::error::Error;
|
||
|
|
||
|
pub fn err_msg(s: &str) -> Box<dyn Error> {
|
||
|
Error(s.to_string()).into()
|
||
|
}
|