/// Common boxed error type used across the framework.
pubtypeCrabbyError=Box<dyn std::error::Error +Send+Sync>;/// Convenient result alias for handlers and applications that use the default
/// framework error type.
pubtypeCrabbyResult<T>=Result<T, CrabbyError>;