e904b667c6
PaddleOCR PR Tests GPU / test-pr-gpu (push) Blocked by required conditions
PaddleOCR PR Tests / test-pr (push) Blocked by required conditions
PaddleOCR PR Tests / test-pr-python (3.8) (push) Waiting to run
Build/Publish Develop Docs / deploy (push) Failing after 1s
PaddleOCR Code Style Check / check-code-style (push) Failing after 1s
PaddleOCR PR Tests GPU / detect-changes (push) Failing after 1s
PaddleOCR PR Tests GPU / test-pr-gpu-impl (push) Waiting to run
PaddleOCR PR Tests / detect-changes (push) Failing after 1s
PaddleOCR PR Tests / test-pr-python (3.13) (push) Waiting to run
PaddleOCR PR Tests / test-pr-python (3.9) (push) Waiting to run
86 lines
2.5 KiB
Python
86 lines
2.5 KiB
Python
# Copyright (c) 2026 PaddlePaddle Authors. All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
|
|
class PaddleOCRAPIError(Exception):
|
|
"""Base exception for PaddleOCR API SDK."""
|
|
|
|
def __init__(self, message: str):
|
|
self.message = message
|
|
super().__init__(message)
|
|
|
|
|
|
class AuthError(PaddleOCRAPIError):
|
|
"""Token missing, invalid, or expired (HTTP 401/403)."""
|
|
|
|
|
|
class InvalidRequestError(PaddleOCRAPIError):
|
|
"""Invalid parameters (HTTP 400)."""
|
|
|
|
|
|
class APIError(PaddleOCRAPIError):
|
|
"""Non-2xx response from the API server."""
|
|
|
|
def __init__(self, status_code: int, message: str):
|
|
self.status_code = status_code
|
|
super().__init__(f"HTTP {status_code}: {message}")
|
|
|
|
|
|
class RateLimitError(APIError):
|
|
"""Daily quota exceeded (HTTP 429)."""
|
|
|
|
def __init__(self, message: str):
|
|
super().__init__(429, message)
|
|
|
|
|
|
class ServiceUnavailableError(APIError):
|
|
"""Server overloaded or gateway timeout (HTTP 503/504)."""
|
|
|
|
def __init__(self, status_code: int, message: str):
|
|
super().__init__(status_code, message)
|
|
|
|
|
|
class JobFailedError(PaddleOCRAPIError):
|
|
"""Job execution failed on the server side."""
|
|
|
|
def __init__(self, job_id: str, error_msg: str):
|
|
self.job_id = job_id
|
|
self.error_msg = error_msg
|
|
super().__init__(f"Job {job_id} failed: {error_msg}")
|
|
|
|
|
|
class RequestTimeoutError(PaddleOCRAPIError):
|
|
"""A single HTTP request exceeded the configured timeout."""
|
|
|
|
|
|
class PollTimeoutError(PaddleOCRAPIError):
|
|
"""Polling timed out waiting for job completion."""
|
|
|
|
def __init__(self, job_id: str, elapsed: float):
|
|
self.job_id = job_id
|
|
self.elapsed = elapsed
|
|
super().__init__(f"Timed out after {elapsed:.1f}s waiting for job {job_id}")
|
|
|
|
|
|
class ResponseFormatError(PaddleOCRAPIError):
|
|
"""A successful API response did not match the documented schema."""
|
|
|
|
|
|
class ResultParseError(PaddleOCRAPIError):
|
|
"""A result JSONL payload could not be parsed as the expected result type."""
|
|
|
|
|
|
class NetworkError(PaddleOCRAPIError):
|
|
"""Network connection failure."""
|