~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/error.py

  • Committer: Curtis Hovey
  • Date: 2012-03-01 01:08:15 UTC
  • Revision ID: curtis.hovey@canonical.com-20120301010815-hz0al69e3j0c9e6n
Raise ArchiveIdNotFound if the client puts a message into an unknown archive.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
    ]
7
7
 
8
8
 
 
9
class ArchiveIdNotFound(Exception):
 
10
    """No archive matching the archive_id was found in the store."""
 
11
 
9
12
class MessageIdNotFound(Exception):
10
13
    """No message matching the message_id was found in the archive."""
11
14