sark_core/http/head/
error.rs1use crate::error::Error;
2
3pub const ERR_TOO_MANY_HEADERS: &str = "Too many headers";
4pub const ERR_INVALID_HEADER_NAME: &str = "Invalid header name";
5
6pub fn bad_request(msg: &'static str) -> Error {
7 Error::BadRequest(msg.into())
8}