~didrocks/unity/altf10

« back to all changes in this revision

Viewing changes to grackle/error.py

  • Committer: Curtis Hovey
  • Date: 2012-03-16 20:16:12 UTC
  • Revision ID: curtis.hovey@canonical.com-20120316201612-lr7b32umqgduaja6
Added a rudimentary put_archive.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
__all__ = [
 
2
    'ArchiveIdExists',
 
3
    'ArchiveIdNotFound',
2
4
    'MessageIdNotFound',
3
5
    'UnparsableDateRange',
4
6
    'UnsupportedDisplayType',
6
8
    ]
7
9
 
8
10
 
 
11
class ArchiveIdExists(Exception):
 
12
    """An archive matching the archive_id was found in the store."""
 
13
 
9
14
class ArchiveIdNotFound(Exception):
10
15
    """No archive matching the archive_id was found in the store."""
11
16