mirror of
https://git.launchpad.net/ubuntu-dev-tools
synced 2025-03-17 18:11:10 +00:00
8 lines
201 B
Python
8 lines
201 B
Python
class PackageNotFoundException(BaseException):
|
|
""" Thrown when a package is not found """
|
|
pass
|
|
|
|
class SeriesNotFoundException(BaseException):
|
|
""" Thrown when a distroseries is not found """
|
|
pass
|