Skip to content

Exceptions

Custom exceptions raised by the Anaplan ORM.

anaplan_orm.exceptions

AnaplanConnectionError

Bases: AnaplanORMError

Raised when the client cannot connect to the Anaplan REST API (e.g., SSL/Network errors).

Source code in src/anaplan_orm/exceptions.py
 7
 8
 9
10
class AnaplanConnectionError(AnaplanORMError):
    """Raised when the client cannot connect to the Anaplan REST API (e.g., SSL/Network errors)."""

    pass

AnaplanORMError

Bases: Exception

Base exception for all errors raised by anaplan-orm.

Source code in src/anaplan_orm/exceptions.py
1
2
3
4
class AnaplanORMError(Exception):
    """Base exception for all errors raised by anaplan-orm."""

    pass