feather-runtime 0.1.1

Web Server Runtime for Feather
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("An IO error occurred: {0}")]
    IoError(#[from] std::io::Error),

    #[error("A parsing error occurred: {0}")]
    ParseError(String),

    #[error("An unknown error occurred")]
    Unknown,
}