17 lines
343 B
Python
17 lines
343 B
Python
"""Shared exceptions for website_sale_aplicoop controllers helpers.
|
|
|
|
These are imported by helper modules to avoid circular imports with
|
|
`website_sale.py` when splitting helpers into separate files.
|
|
"""
|
|
|
|
|
|
class BadRequestError(Exception):
|
|
pass
|
|
|
|
|
|
class ForbiddenError(Exception):
|
|
pass
|
|
|
|
|
|
class GroupOrderUnavailable(Exception):
|
|
pass
|