Skip to content

510 Not Extended

The request needs further extensions for the server to fulfill it.

Rare. Use this if your server requires specific HTTP extensions to fulfill a request, and the client failed to declare them.

import { HttpException, get } from 'shokupan';
export const getResource = get('/resource', () => {
throw new HttpException('Not Extended', 510);
});