2009-05-09 20:09:56 +01:00
|
|
|
class PackageNotFoundException(BaseException):
|
|
|
|
""" Thrown when a package is not found """
|
|
|
|
pass
|
2010-12-03 00:06:43 +01:00
|
|
|
|
2009-05-09 20:09:56 +01:00
|
|
|
class SeriesNotFoundException(BaseException):
|
|
|
|
""" Thrown when a distroseries is not found """
|
|
|
|
pass
|
2009-06-11 20:23:30 +02:00
|
|
|
|
2010-03-20 19:27:40 +01:00
|
|
|
class PocketDoesNotExistError(Exception):
|
|
|
|
'''Raised when a invalid pocket is used.'''
|
2009-06-11 20:23:30 +02:00
|
|
|
pass
|
2009-07-23 14:19:21 +02:00
|
|
|
|
|
|
|
class ArchiveNotFoundException(BaseException):
|
|
|
|
""" Thrown when an archive for a distibution is not found """
|
|
|
|
pass
|
2010-02-20 17:07:03 +01:00
|
|
|
|
|
|
|
class AlreadyLoggedInError(Exception):
|
|
|
|
'''Raised when a second login is attempted.'''
|
|
|
|
pass
|