org.formproc
Class FormConfigurationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.formproc.FormConfigurationException
All Implemented Interfaces:
java.io.Serializable

public class FormConfigurationException
extends java.lang.RuntimeException

An exception which is thrown if there are any problems with form configuration.

Author:
Anthony Eden
See Also:
Serialized Form

Constructor Summary
FormConfigurationException(java.lang.String message)
          Construct a new FormConfigurationException with the given message.
FormConfigurationException(java.lang.String message, java.lang.Throwable throwable)
          Construct a new FormConfigurationException with the given nested Exception and error message.
FormConfigurationException(java.lang.Throwable throwable)
          Construct a new FormConfigurationException with the given nested Exception.
 
Method Summary
 java.lang.Throwable getThrowable()
          Get the nested exception
 
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

FormConfigurationException

public FormConfigurationException(java.lang.String message)
Construct a new FormConfigurationException with the given message.

Parameters:
message - The message

FormConfigurationException

public FormConfigurationException(java.lang.Throwable throwable)
Construct a new FormConfigurationException with the given nested Exception. The message from the nested exception will be used as this exception's message.

Parameters:
throwable - The nested exception

FormConfigurationException

public FormConfigurationException(java.lang.String message,
                                  java.lang.Throwable throwable)
Construct a new FormConfigurationException with the given nested Exception and error message.

Parameters:
message - The message
throwable - The nested exception
Method Detail

getThrowable

public java.lang.Throwable getThrowable()
Get the nested exception

Returns:
The nested exception


Copyright (c) 2001-2003 Anthony Eden. All Rights Reserved.