Files
fluid/backend-rust/src/errors.rs
2019-08-14 22:15:38 +03:00

6 lines
102 B
Rust

use std::error::Error;
pub fn err_msg(s: &str) -> Box<dyn Error> {
Error(s.to_string()).into()
}