Skip to content

exceptions

OTEAPI-DLite exceptions.

CollectionNotFound

Bases: OteapiDliteException

A dlite.Collection could not be found.

Source code in oteapi_dlite/utils/exceptions.py
10
11
class CollectionNotFound(OteapiDliteException):
    """A dlite.Collection could not be found."""

OteapiDliteException

Bases: Exception

A catch-em-all generic OTEAPI-DLite exception.

Source code in oteapi_dlite/utils/exceptions.py
6
7
class OteapiDliteException(Exception):
    """A catch-em-all generic OTEAPI-DLite exception."""