packages/exception/src/client/HttpLengthRequired.ts
import { HttpClientException } from '../base/HttpClientException';
import type { HttpExceptionParams } from '../types/HttpExceptionParams';
import { getNormalizedParams } from '../utils/getNormalizedParams';
import { initProtoAndName } from '../utils/initProtoAndName';
/**
* 411 Length required
*
* Server rejected the request because the Content-Length header field is not defined and the server requires it.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/411
* @see https://httpstatus.in/411/
*/
const status = 411;
const name = 'LengthRequired';
export class HttpLengthRequired extends HttpClientException {
static readonly STATUS = status;
constructor(msgOrParams?: HttpExceptionParams | string) {
super(status, getNormalizedParams(name, msgOrParams));
initProtoAndName(this, name, HttpLengthRequired);
}
}