org.springframework.beans.factory
Class NoSuchBeanDefinitionException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.springframework.core.NestedRuntimeException
                  extended byorg.springframework.beans.BeansException
                      extended byorg.springframework.beans.factory.NoSuchBeanDefinitionException
All Implemented Interfaces:
Serializable

public class NoSuchBeanDefinitionException
extends BeansException

Exception thrown when a BeanFactory is asked for a bean instance name for which it cannot find a definition.

Author:
Rod Johnson
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.RuntimeException
 
Constructor Summary
NoSuchBeanDefinitionException(Class type, String message)
          Create a new NoSuchBeanDefinitionException.
NoSuchBeanDefinitionException(String name, String message)
          Create a new NoSuchBeanDefinitionException.
 
Method Summary
 String getBeanName()
          Return the name of the missing bean, if it was a lookup by name that failed.
 Class getBeanType()
          Return the required type of bean, if it was a lookup by type that failed.
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NoSuchBeanDefinitionException

public NoSuchBeanDefinitionException(String name,
                                     String message)
Create a new NoSuchBeanDefinitionException.

Parameters:
name - the name of the missing bean
message - further, detailed message describing the problem

NoSuchBeanDefinitionException

public NoSuchBeanDefinitionException(Class type,
                                     String message)
Create a new NoSuchBeanDefinitionException.

Parameters:
type - required type of bean
message - further, detailed message describing the problem
Method Detail

getBeanName

public String getBeanName()
Return the name of the missing bean, if it was a lookup by name that failed.


getBeanType

public Class getBeanType()
Return the required type of bean, if it was a lookup by type that failed.



Copyright (C) 2003-2004 The Spring Framework Project.