aboutsummaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch/__init__.py
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2009-07-19 09:49:36 -0700
committerRichard Purdie <rpurdie@linux.intel.com>2010-03-22 14:53:55 +0000
commita3012e1ca98132a4e273d363fe3302cd85c37f48 (patch)
tree3486ad60d90a9defa16bed4f8b1e0e4220d92cad /bitbake/lib/bb/fetch/__init__.py
parent9a0da388cefb71fa7e9b015772c66625fdb70c1d (diff)
downloadopenembedded-core-contrib-a3012e1ca98132a4e273d363fe3302cd85c37f48.tar.gz
Move MalformedUrl, VarExpandError into appropriate modules.
(Bitbake rev: e616483b237dafff7f90ba1c09e9ee7c383a2e47) Signed-off-by: Chris Larson <clarson@kergoth.com> Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/fetch/__init__.py')
-rw-r--r--bitbake/lib/bb/fetch/__init__.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py
index cedf839860..875cda8929 100644
--- a/bitbake/lib/bb/fetch/__init__.py
+++ b/bitbake/lib/bb/fetch/__init__.py
@@ -29,6 +29,9 @@ import bb
from bb import data
from bb import persist_data
+class MalformedUrl(Exception):
+ """Exception raised when encountering an invalid url"""
+
class FetchError(Exception):
"""Exception raised when a download fails"""