wp-error 0.10.0

Structured, domain-specific error types and robustness strategies extracted from WarpParse
Documentation
pub mod codes;
pub mod config_error;
pub mod diagnostic_meta;
pub mod error_handling;
pub mod http_map;
pub mod http_respond;
mod knowledge;
pub mod parse_error;
pub mod run_error;
pub mod util;

pub use codes::SysErrorCode;
pub use config_error::*;
pub use diagnostic_meta::*;
pub use http_map::{http_status_for_reason, http_status_for_sys};
pub use http_respond::{
    ErrorResponse, build_error_response, error_response_json, error_response_text,
};
pub use knowledge::*;
pub use parse_error::*;
pub use run_error::*;