@belgattitude/http-exception
Version:
Warning: has been moved to @httpx/exception. Please update.
50 lines (49 loc) • 3.51 kB
JavaScript
export { HttpException } from './base/HttpException.js';
export { HttpServerException } from './base/HttpServerException.js';
export { HttpClientException } from './base/HttpClientException.js';
export { HttpBadRequest } from './client/HttpBadRequest.js';
export { HttpConflict } from './client/HttpConflict.js';
export { HttpExpectationFailed } from './client/HttpExpectationFailed.js';
export { HttpFailedDependency } from './client/HttpFailedDependency.js';
export { HttpForbidden } from './client/HttpForbidden.js';
export { HttpGone } from './client/HttpGone.js';
export { HttpImATeapot } from './client/HttpImATeapot.js';
export { HttpLengthRequired } from './client/HttpLengthRequired.js';
export { HttpLocked } from './client/HttpLocked.js';
export { HttpMisdirectedRequest } from './client/HttpMisdirectedRequest.js';
export { HttpMethodNotAllowed } from './client/HttpMethodNotAllowed.js';
export { HttpNotAcceptable } from './client/HttpNotAcceptable.js';
export { HttpNotFound } from './client/HttpNotFound.js';
export { HttpPayloadTooLarge } from './client/HttpPayloadTooLarge.js';
export { HttpPaymentRequired } from './client/HttpPaymentRequired.js';
export { HttpPreconditionFailed } from './client/HttpPreconditionFailed.js';
export { HttpPreconditionRequired } from './client/HttpPreconditionRequired.js';
export { HttpProxyAuthenticationRequired } from './client/HttpProxyAuthenticationRequired.js';
export { HttpRangeNotSatisfiable } from './client/HttpRangeNotSatisfiable.js';
export { HttpRequestHeaderFieldsTooLarge } from './client/HttpRequestHeaderFieldsTooLarge.js';
export { HttpRequestTimeout } from './client/HttpRequestTimeout.js';
export { HttpTooEarly } from './client/HttpTooEarly.js';
export { HttpTooManyRequests } from './client/HttpTooManyRequests.js';
export { HttpUnauthorized } from './client/HttpUnauthorized.js';
export { HttpUnavailableForLegalReasons } from './client/HttpUnavailableForLegalReasons.js';
export { HttpUnprocessableEntity } from './client/HttpUnprocessableEntity.js';
export { HttpUnsupportedMediaType } from './client/HttpUnsupportedMediaType.js';
export { HttpUpgradeRequired } from './client/HttpUpgradeRequired.js';
export { HttpUriTooLong } from './client/HttpUriTooLong.js';
export { HttpBadGateway } from './server/HttpBadGateway.js';
export { HttpVersionNotSupported } from './server/HttpVersionNotSupported.js';
export { HttpGatewayTimeout } from './server/HttpGatewayTimeout.js';
export { HttpInternalServerError } from './server/HttpInternalServerError.js';
export { HttpNetworkAuthenticationRequired } from './server/HttpNetworkAuthenticationRequired.js';
export { HttpNotExtended } from './server/HttpNotExtended.js';
export { HttpNotImplemented } from './server/HttpNotImplemented.js';
export { HttpServiceUnavailable } from './server/HttpServiceUnavailable.js';
export { HttpInsufficientStorage } from './server/HttpInsufficientStorage.js';
export { HttpLoopDetected } from './server/HttpLoopDetected.js';
export { HttpVariantAlsoNegotiates } from './server/HttpVariantAlsoNegotiates.js';
export { isHttpException } from './typeguards/isHttpException.js';
export { isHttpClientException } from './typeguards/isHttpClientException.js';
export { isHttpServerException } from './typeguards/isHttpServerException.js';
export { isHttpStatusCode } from './typeguards/isHttpStatusCode.js';
export { isHttpErrorStatusCode } from './typeguards/isHttpErrorStatusCode.js';
export { createHttpException } from './factory/createHttpException.js';