Module metaloaders.exceptions

Exceptions raised by this package.

Expand source code Browse git
"""Exceptions raised by this package."""


class MetaloaderError(Exception):
    """Base exception for all errors within this package."""


class MetaloaderNotImplemented(MetaloaderError):
    """Something is yet not implemented in the library."""

Classes

class MetaloaderError (...)

Base exception for all errors within this package.

Expand source code Browse git
class MetaloaderError(Exception):
    """Base exception for all errors within this package."""

Ancestors

  • builtins.Exception
  • builtins.BaseException

Subclasses

class MetaloaderNotImplemented (...)

Something is yet not implemented in the library.

Expand source code Browse git
class MetaloaderNotImplemented(MetaloaderError):
    """Something is yet not implemented in the library."""

Ancestors