public abstract class

BeansException

extends NestedRuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.springframework.core.NestedRuntimeException
           ↳ org.springframework.beans.BeansException
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

Abstract superclass for all exceptions thrown in the beans package and subpackages.

Note that this is a runtime (unchecked) exception. Beans exceptions are usually fatal; there is no reason for them to be checked.

Summary

Public Constructors
BeansException(String msg)
Create a new BeansException with the specified message.
BeansException(String msg, Throwable cause)
Create a new BeansException with the specified message and root cause.
Public Methods
boolean equals(Object other)
int hashCode()
[Expand]
Inherited Methods
From class org.springframework.core.NestedRuntimeException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public BeansException (String msg)

Also: SpringBeans

Create a new BeansException with the specified message.

Parameters
msg the detail message

public BeansException (String msg, Throwable cause)

Also: SpringBeans

Create a new BeansException with the specified message and root cause.

Parameters
msg the detail message
cause the root cause

Public Methods

public boolean equals (Object other)

Also: SpringBeans

public int hashCode ()

Also: SpringBeans