Skip to content

Commit

Permalink
Javadoc
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@796 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Jan 6, 2009
1 parent 1dbc53d commit 0a62742
Showing 1 changed file with 9 additions and 6 deletions.
Expand Up @@ -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);
}

}

0 comments on commit 0a62742

Please sign in to comment.