/** * 核心异常类 * @author ranyunlong<549510622@qq.com> * license MIT */ // 基础异常类 export * from './HttpException' // 400 export * from './BadRequestException' // 401 export * from './UnauthorizedException' // 403 export * from './ForbiddenException' // 404 export * from './NotFoundException' // 405 export * from './MethodNotAllowedException' // 406 export * from './NotAcceptableException' // 407 export * from './ProxyAuthenticationRequiredException' // 408 export * from './RequestTimeoutException' // 409 export * from './ConflictException' // 410 export * from './GoneException' // 411 export * from './LengthRequiredException' // 412 export * from './PreconditionFailedException' // 413 export * from './PayloadTooLargeException' // 414 export * from './URITooLongException' // 415 export * from './UnsupportedMediaTypeException' // 416 export * from './RangeNotSatisfiableException' // 417 export * from './ExpectationFailedException' // 418 export * from './ImATeapotException' // 421 export * from './MisdirectedRequestException' // 422 export * from './UnprocessableEntityException' // 423 export * from './LockedException' // 424 export * from './FailedDependencyException' // 425 export * from './UnorderedCollectionException' // 426 export * from './UpgradeRequiredException' // 428 export * from './PreconditionRequiredException' // 429 export * from './TooManyRequestsException' // 431 export * from './ExpectationFailedException' // 451 export * from './UnavailableForLegalReasonsException' // 500 export * from './InternalServerErrorException' // 501 export * from './NotImplementedException' // 502 export * from './BadGatewayException' // 503 export * from './ServiceUnavailableException' // 504 export * from './GatewayTimeoutException' // 505 export * from './HTTPVersionNotSupportedException' // 506 export * from './VariantAlsoNegotiatesException' // 507 export * from './InsufficientStorageExceotion' // 508 export * from './LoopDetectedException' // 509 export * from './BandwidthLimitExceededException' // 510 export * from './NotExtendedException' // 511 export * from './NetworkAuthenticationRequiredException'