diff options
Diffstat (limited to 'bitbake/lib/bb/fetch')
-rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 3 |
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 | |||
29 | from bb import data | 29 | from bb import data |
30 | from bb import persist_data | 30 | from bb import persist_data |
31 | 31 | ||
32 | class MalformedUrl(Exception): | ||
33 | """Exception raised when encountering an invalid url""" | ||
34 | |||
32 | class FetchError(Exception): | 35 | class FetchError(Exception): |
33 | """Exception raised when a download fails""" | 36 | """Exception raised when a download fails""" |
34 | 37 | ||