Files
fluid/backend-rust/src/errors.rs

6 lines
102 B
Rust
Raw Normal View History

2019-08-14 22:15:38 +03:00
use std::error::Error;
pub fn err_msg(s: &str) -> Box<dyn Error> {
Error(s.to_string()).into()
}