bitbake/lib/bb/providers.py:
authorRichard Purdie <rpurdie@linux.intel.com>
Sun, 20 Aug 2006 21:34:35 +0000 (21:34 +0000)
committerRichard Purdie <rpurdie@linux.intel.com>
Sun, 20 Aug 2006 21:34:35 +0000 (21:34 +0000)
    - Add NoRProvider exception

lib/bb/providers.py

index 02f45dd..458eef2 100644 (file)
@@ -27,7 +27,10 @@ from bb import data, utils
 import bb
 
 class NoProvider(Exception):
-    """Exception raised when no provider can be found"""
+    """Exception raised when no provider of a build dependency can be found"""
+
+class NoRProvider(Exception):
+    """Exception raised when no provider of a runtime dependency can be found"""
 
 def findBestProvider(pn, cfgData, dataCache, pkg_pn = None):
     """