~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/error.py

  • Committer: Curtis Hovey
  • Date: 2012-03-17 21:02:32 UTC
  • Revision ID: curtis.hovey@canonical.com-20120317210232-0cw98mbpn9356que
No need to uppercase the reason.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
__metaclass__ = type
2
1
__all__ = [
3
2
    'ArchiveIdExists',
4
3
    'ArchiveIdNotFound',
12
11
class ArchiveIdExists(Exception):
13
12
    """An archive matching the archive_id was found in the store."""
14
13
 
15
 
 
16
14
class ArchiveIdNotFound(Exception):
17
15
    """No archive matching the archive_id was found in the store."""
18
16
 
19
 
 
20
17
class MessageIdNotFound(Exception):
21
18
    """No message matching the message_id was found in the archive."""
22
19