export function BadRequest<T = string>(body?: T): HttpMessage<T | undefined, 400, "text/plain"> {
    return createMessage(400, body);
}