Browse Source

Add exception for UINotImportable

suites/jessie-proposed-backports
Chris Lawrence 17 years ago
parent
commit
d95965dfeb
  1. 6
      reportbug_exceptions.py

6
reportbug_exceptions.py

@ -18,7 +18,7 @@
## ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
## SOFTWARE.
#
# $Id: reportbug_exceptions.py,v 1.3 2006-08-14 05:01:09 lawrencc Exp $
# $Id: reportbug_exceptions.py,v 1.3.2.1 2006-08-26 01:57:29 lawrencc Exp $
class reportbug_exception(Exception):
pass
@ -26,6 +26,10 @@ class reportbug_exception(Exception):
class reportbug_ui_exception(reportbug_exception):
pass
# Can't initialize interface
class UINotImportable(reportbug_ui_exception):
pass
# No package found
class NoPackage(reportbug_ui_exception):
pass

Loading…
Cancel
Save