Rocket/lib/src/error.rs

9 lines
180 B
Rust
Raw Normal View History

2016-04-04 05:41:31 +00:00
#[derive(Debug, Copy, Clone, Eq, PartialEq, Hash)]
pub enum Error {
BadMethod,
BadParse,
NoRoute, // FIXME: Add a chain of routes attempted.
Internal,
NoKey,
}