ptcoffee_django/core/exceptions.py
2023-01-21 14:15:36 -07:00

14 lines
265 B
Python

class Error(Exception):
"""Base class for other exceptions"""
pass
class USPSPostageError(Error):
"""Raised when the input value is too small"""
pass
class ShippingAddressError(Error):
"""Raised when the input value is too large"""
pass