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