diff options
Diffstat (limited to '')
-rw-r--r-- | portato/backend/exceptions.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/portato/backend/exceptions.py b/portato/backend/exceptions.py index a5cb2fb..42f9d44 100644 --- a/portato/backend/exceptions.py +++ b/portato/backend/exceptions.py @@ -3,7 +3,7 @@ # File: portato/backend/exceptions.py # This file is part of the Portato-Project, a graphical portage-frontend. # -# Copyright (C) 2006 René 'Necoro' Neumann +# Copyright (C) 2006-2007 René 'Necoro' Neumann # This is free software. You may redistribute copies of it under the terms of # the GNU General Public License version 2. # There is NO WARRANTY, to the extent permitted by law. @@ -21,3 +21,7 @@ class PackageNotFoundException (Exception): class DependencyCalcError (Exception): """An error occured during dependency calculation.""" pass + +class InvalidSystemError (Exception): + """An invalid system is set.""" + pass |