summaryrefslogtreecommitdiff
path: root/portato
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-02-02 11:56:26 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-02-02 11:56:26 +0100
commit93ffd87b338c7107e3bc365392817390b6616f29 (patch)
tree51d47b71a4cc37784011f8b8965021ba6867211c /portato
parentd97a8bba4c3c877953bc6e800095ac4bc699ea45 (diff)
downloadportato-93ffd87b338c7107e3bc365392817390b6616f29.tar.gz
portato-93ffd87b338c7107e3bc365392817390b6616f29.tar.bz2
portato-93ffd87b338c7107e3bc365392817390b6616f29.zip
Add 'VersionsNotFoundException'
Diffstat (limited to 'portato')
-rw-r--r--portato/backend/exceptions.py4
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