diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-02 11:56:26 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-02 11:56:26 +0100 |
commit | 93ffd87b338c7107e3bc365392817390b6616f29 (patch) | |
tree | 51d47b71a4cc37784011f8b8965021ba6867211c | |
parent | d97a8bba4c3c877953bc6e800095ac4bc699ea45 (diff) | |
download | portato-93ffd87b338c7107e3bc365392817390b6616f29.tar.gz portato-93ffd87b338c7107e3bc365392817390b6616f29.tar.bz2 portato-93ffd87b338c7107e3bc365392817390b6616f29.zip |
Add 'VersionsNotFoundException'
Diffstat (limited to '')
-rw-r--r-- | portato/backend/exceptions.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/portato/backend/exceptions.py b/portato/backend/exceptions.py index 37e9bda..46b2a3e 100644 --- a/portato/backend/exceptions.py +++ b/portato/backend/exceptions.py @@ -18,6 +18,10 @@ class PackageNotFoundException (Exception): """An exception marking that a package could not be found.""" pass +class VersionsNotFoundException (Exception): + """An exception marking that there could be no versions found for a specific CP.""" + pass + class DependencyCalcError (Exception): """An error occured during dependency calculation.""" pass |