diff options
author | necoro <> | 2007-02-20 19:53:20 +0000 |
---|---|---|
committer | necoro <> | 2007-02-20 19:53:20 +0000 |
commit | b4f5605505dad572f4c4ea47e03d8d678c351003 (patch) | |
tree | d338947ac9bc8ef7b4c1998fa6d653b7a120bfa5 /portato/backend/exceptions.py | |
parent | 0713215207a7eed95bed8e4ca9044c3eed5f3827 (diff) | |
download | portato-b4f5605505dad572f4c4ea47e03d8d678c351003.tar.gz portato-b4f5605505dad572f4c4ea47e03d8d678c351003.tar.bz2 portato-b4f5605505dad572f4c4ea47e03d8d678c351003.zip |
Renamed package.get_env_var to package.get_package_settings
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 |