10
class UnparsableDateRange(Exception):
11
"""The date_range was not in the format of 2012-01-01..2012-01-31."""
14
class UnsupportedDisplayType(Exception):
15
"""Raised when an Unsupported display_type is requested."""
18
class UnsupportedOrder(Exception):
19
"""Raised when an Unsupported order is requested."""
22
class MessageIdNotFound(Exception):
23
"""No message matching the message_id was found in the archive."""
26
SUPPORTED_DISPLAY_TYPES = (
9
from grackle.error import (
11
UnsupportedDisplayType,