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