Skip to content

505 HTTP Version Not Supported

The server does not support the HTTP protocol version you are trying to use.

Extremely rare. Throw this if your server strictly requires HTTP/2 or HTTP/3, and a client tries to connect with HTTP/1.0.

import { HttpException, get } from 'shokupan';
export const getResource = get('/resource', () => {
throw new HttpException('HTTP Version Not Supported', 505);
});