Exception that is thrown when an
Adapter or
Factory cannot create an instance because none of its public constructors has
an argument list that can be properly satisfied.
author: Leo Simons version: $Id: NoSatisfiableConstructorAvailableException.java,v 1.6 2004/02/29 19:21:35 lsimons Exp $
Constructor Summary
public
NoSatisfiableConstructorAvailableException(Class clazz, Constructor constructor, Set unsatisfiedDependencies) Create a new instance identifying the specified constructor of the
specified class as the problem because the specified arguments could
not be provided.
public NoSatisfiableConstructorAvailableException(Class clazz, Constructor constructor, Set unsatisfiedDependencies)(Code)
Create a new instance identifying the specified constructor of the
specified class as the problem because the specified arguments could
not be provided.
Parameters: clazz - the class of which no instance could be created. Parameters: constructor - the constructor that could not be called properly. Parameters: unsatisfiedDependencies - the arguments that could not be providedto the constructor.