Uses of Class
org.picocontainer.PicoException

Packages that use PicoException
org.picocontainer This package contains the core API for PicoContainer, a compact container for working with the dependency injection pattern. 
org.picocontainer.alternatives   
org.picocontainer.defaults This package contains the default implementation of the PicoContainer API. 
 

Uses of PicoException in org.picocontainer
 

Subclasses of PicoException in org.picocontainer
 class PicoInitializationException
          Subclass of PicoException that is thrown when there is a problem initializing the container or some other part of the PicoContainer api, for example, when a cyclic dependency between components occurs.
 class PicoInstantiationException
          Subclass of PicoException that is thrown when there is a problem creating an instance of a container or some other part of the PicoContainer api, for example, when an invocation through the reflection api fails.
 class PicoIntrospectionException
          Subclass of PicoException that is thrown when there is a problem creating, providing or locating a component instance or a part of the PicoContainer API, for example, when a request for a component is ambiguous.
 class PicoRegistrationException
          Subclass of PicoException that is thrown when there is a problem registering a component with the container or another part of the PicoContainer API, for example, when a request for a component is ambiguous.
 class PicoVerificationException
          Subclass of PicoException that is thrown when a PicoContainer hierarchy cannot be verified.
 

Methods in org.picocontainer that throw PicoException
 List PicoContainer.getComponentInstancesOfType(Class componentType)
          Returns a List of components of a certain componentType.
 

Uses of PicoException in org.picocontainer.alternatives
 

Methods in org.picocontainer.alternatives that throw PicoException
 List AbstractDelegatingMutablePicoContainer.getComponentInstancesOfType(Class type)
           
 List ImmutablePicoContainer.getComponentInstancesOfType(Class type)
           
 

Uses of PicoException in org.picocontainer.defaults
 

Subclasses of PicoException in org.picocontainer.defaults
 class AmbiguousComponentResolutionException
          Exception that is thrown as part of the introspection.
 class AssignabilityRegistrationException
          A subclass of PicoRegistrationException that is thrown during component registration if the component's key is a type and the implementation is not assignable to.
 class CyclicDependencyException
           
 class DuplicateComponentKeyRegistrationException
           
 class NotConcreteRegistrationException
           
 class PicoInvocationTargetInitializationException
           
 class PicoVisitorTraversalException
          Exception for a PicoVisitor, that is dependent on a defined starting point of the traversal.
 class TooManySatisfiableConstructorsException
           
 class UnsatisfiableDependenciesException
           
 

Methods in org.picocontainer.defaults that throw PicoException
 void ConstantParameter.verify(PicoContainer container, ComponentAdapter adapter, Class expectedType)
          Verify that the Parameter can statisfied the expected type using the container
 List DefaultPicoContainer.getComponentInstances()
           
 List DefaultPicoContainer.getComponentInstancesOfType(Class componentType)
           
 Object DefaultPicoContainer.getComponentInstance(Object componentKey)
           
 



Copyright © 2003-2004 Codehaus. All Rights Reserved.