Module palletjack.errors

Errors specific to palletjack

Expand source code
"""Errors specific to palletjack
"""


class IntFieldAsFloatError(Exception):
    """A field expected to be integer is float instead"""


class TimezoneAwareDatetimeError(Exception):
    """A datetime field uses a timezone-aware dtype"""

Classes

class IntFieldAsFloatError (*args, **kwargs)

A field expected to be integer is float instead

Expand source code
class IntFieldAsFloatError(Exception):
    """A field expected to be integer is float instead"""

Ancestors

  • builtins.Exception
  • builtins.BaseException
class TimezoneAwareDatetimeError (*args, **kwargs)

A datetime field uses a timezone-aware dtype

Expand source code
class TimezoneAwareDatetimeError(Exception):
    """A datetime field uses a timezone-aware dtype"""

Ancestors

  • builtins.Exception
  • builtins.BaseException