[webbeans-commits] Webbeans SVN: r796 - ri/trunk/webbeans-api/src/main/java/javax/webbeans.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Tue Jan 6 18:12:31 EST 2009


Author: pete.muir at jboss.org
Date: 2009-01-06 18:12:31 -0500 (Tue, 06 Jan 2009)
New Revision: 796

Modified:
   ri/trunk/webbeans-api/src/main/java/javax/webbeans/AmbiguousDependencyException.java
Log:
Javadoc

Modified: ri/trunk/webbeans-api/src/main/java/javax/webbeans/AmbiguousDependencyException.java
===================================================================
--- ri/trunk/webbeans-api/src/main/java/javax/webbeans/AmbiguousDependencyException.java	2009-01-06 23:07:39 UTC (rev 795)
+++ ri/trunk/webbeans-api/src/main/java/javax/webbeans/AmbiguousDependencyException.java	2009-01-06 23:12:31 UTC (rev 796)
@@ -15,33 +15,36 @@
  * limitations under the License.
  */
 
-
 package javax.webbeans;
 
 /**
+ * An AmbiguousDependencyException is thrown when within the set of enabled Web
+ * Beans with the API type and bind- ing types declared there exists no unique
+ * Web Bean with a higher precedence than all other Web Beans in the set.
  * 
+ * 
  * @author Pete Muir
  */
 public class AmbiguousDependencyException extends DeploymentException
 {
-
+   
    public AmbiguousDependencyException()
    {
    }
-
+   
    public AmbiguousDependencyException(String message, Throwable throwable)
    {
       super(message, throwable);
    }
-
+   
    public AmbiguousDependencyException(String message)
    {
       super(message);
    }
-
+   
    public AmbiguousDependencyException(Throwable throwable)
    {
       super(throwable);
    }
-
+   
 }




More information about the weld-commits mailing list