earthsnake/earthsnake/exc.py

14 lines
277 B
Python
Raw Normal View History

2022-04-11 13:45:45 +00:00
"""Exception types for Earthsnake
"""
2022-04-11 13:45:45 +00:00
class EarthsnakeError(Exception):
"""Basic Earthsnake error
Should not be used except as a base type.
"""
class ValidationError(EarthsnakeError):
"""Raised when something doesnt pass as a valid Earthsnake object"""