2009-05-09 20:09:56 +01:00
|
|
|
class PackageNotFoundException(BaseException):
|
|
|
|
""" Thrown when a package is not found """
|
|
|
|
pass
|
|
|
|
|
|
|
|
class SeriesNotFoundException(BaseException):
|
|
|
|
""" Thrown when a distroseries is not found """
|
|
|
|
pass
|
2009-06-11 20:23:30 +02:00
|
|
|
|
2009-07-23 14:21:42 +02:00
|
|
|
class PocketDoesNotExistException(BaseException):
|
2009-06-11 20:23:30 +02:00
|
|
|
""" Thrown when a invalid pocket is passed """
|
|
|
|
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
|