imag/src/error.rs

15 lines
195 B
Rust
Raw Normal View History

2015-10-24 16:43:39 +00:00
use std::error::Error;
struct ApplicationError {
str: String
}
impl Error for ApplicationError {
fn description(&self) -> &str {
}
fn cause(&self) -> Option<&Error> {
}
}