mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-13 08:01:09 +00:00
OO-way and add caching * ubuntutools/lp/functions.py: Use the lpapiwrapper.py where applicable and mark the rewritten functions as deprecated * ubuntutools/lp/udtexceptions.py: Add PocketDoesNotExistException * buildd: Make use of LpApiWrapper
12 lines
297 B
Python
12 lines
297 B
Python
class PackageNotFoundException(BaseException):
|
|
""" Thrown when a package is not found """
|
|
pass
|
|
|
|
class SeriesNotFoundException(BaseException):
|
|
""" Thrown when a distroseries is not found """
|
|
pass
|
|
|
|
class PocketDoesNotExist(BaseException):
|
|
""" Thrown when a invalid pocket is passed """
|
|
pass
|