org.springframework.richclient.application
Class ConfigurationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.richclient.application.ApplicationException
                  extended by org.springframework.richclient.application.ConfigurationException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
PropertyNotSetException

public class ConfigurationException
extends ApplicationException

Indicates that there is a problem with the runtime configuration of the application. This is a fairly general top-level exception. Before creating and throwing an instance of this type, consider if a more specific subclass would be appropriate.

Since:
0.3
Author:
Kevin Stembridge
See Also:
Serialized Form

Constructor Summary
ConfigurationException()
          Creates a new ConfigurationException.
ConfigurationException(String message)
          Creates a new ConfigurationException with the specified message.
ConfigurationException(String message, Throwable cause)
          Creates a new ConfigurationException with the specified message and nested exception.
ConfigurationException(Throwable cause)
          Creates a new ConfigurationException with the specified nested exception.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ConfigurationException

public ConfigurationException()
Creates a new ConfigurationException.


ConfigurationException

public ConfigurationException(String message)
Creates a new ConfigurationException with the specified message.

Parameters:
message - The detail message.

ConfigurationException

public ConfigurationException(String message,
                              Throwable cause)
Creates a new ConfigurationException with the specified message and nested exception.

Parameters:
message - The detail message.
cause - The nested exception.

ConfigurationException

public ConfigurationException(Throwable cause)
Creates a new ConfigurationException with the specified nested exception.

Parameters:
cause - The nested exception.


Copyright © 2004-2008 The Spring Framework. All Rights Reserved.