Files
plexjs/src/http/errors/index.ts
2023-10-26 21:12:05 -05:00

84 lines
2.7 KiB
TypeScript

import BadRequest from './BadRequest';
import Unauthorized from './Unauthorized';
import PaymentRequired from './PaymentRequired';
import Forbidden from './Forbidden';
import NotFound from './NotFound';
import MethodNotAllowed from './MethodNotAllowed';
import NotAcceptable from './NotAcceptable';
import ProxyAuthenticationRequired from './ProxyAuthenticationRequired';
import RequestTimeout from './RequestTimeout';
import Conflict from './Conflict';
import Gone from './Gone';
import LengthRequired from './LengthRequired';
import PreconditionFailed from './PreconditionFailed';
import PayloadTooLarge from './PayloadTooLarge';
import UriTooLong from './UriTooLong';
import UnsupportedMediaType from './UnsupportedMediaType';
import RangeNotSatisfiable from './RangeNotSatisfiable';
import ExpectationFailed from './ExpectationFailed';
import MisdirectedRequest from './MisdirectedRequest';
import UnprocessableEntity from './UnprocessableEntity';
import Locked from './Locked';
import FailedDependency from './FailedDependency';
import TooEarly from './TooEarly';
import UpgradeRequired from './UpgradeRequired';
import PreconditionRequired from './PreconditionRequired';
import TooManyRequests from './TooManyRequests';
import RequestHeaderFieldsTooLarge from './RequestHeaderFieldsTooLarge';
import UnavailableForLegalReasons from './UnavailableForLegalReasons';
import InternalServerError from './InternalServerError';
import NotImplemented from './NotImplemented';
import BadGateway from './BadGateway';
import ServiceUnavailable from './ServiceUnavailable';
import GatewayTimeout from './GatewayTimeout';
import HttpVersionNotSupported from './HttpVersionNotSupported';
import VariantAlsoNegotiates from './VariantAlsoNegotiates';
import UnsufficientStorage from './UnsufficientStorage';
import LoopDetected from './LoopDetected';
import NotExtended from './NotExtended';
import NetworkAuthenticationRequired from './NetworkAuthenticationRequired';
import { BaseHTTPError } from './base';
export {
BaseHTTPError,
BadRequest,
Unauthorized,
PaymentRequired,
Forbidden,
NotFound,
MethodNotAllowed,
NotAcceptable,
ProxyAuthenticationRequired,
RequestTimeout,
Conflict,
Gone,
LengthRequired,
PreconditionFailed,
PayloadTooLarge,
UriTooLong,
UnsupportedMediaType,
RangeNotSatisfiable,
ExpectationFailed,
MisdirectedRequest,
UnprocessableEntity,
Locked,
FailedDependency,
TooEarly,
UpgradeRequired,
PreconditionRequired,
TooManyRequests,
RequestHeaderFieldsTooLarge,
UnavailableForLegalReasons,
InternalServerError,
NotImplemented,
BadGateway,
ServiceUnavailable,
GatewayTimeout,
HttpVersionNotSupported,
VariantAlsoNegotiates,
UnsufficientStorage,
LoopDetected,
NotExtended,
NetworkAuthenticationRequired,
};