cot 0.6.0

The Rust web framework for lazy developers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Error handling types and utilities for Cot applications.
//!
//! This module provides error types, error handlers, and utilities for
//! handling various types of errors that can occur in Cot applications,
//! including 404 Not Found errors, uncaught panics, and custom error pages.

pub mod handler;
mod not_found;

#[doc(inline)]
pub use cot_core::error::{MethodNotAllowed, UncaughtPanic};
pub use not_found::{Kind as NotFoundKind, NotFound};