net.sf.jolene.dom
Class GridBindException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by net.sf.jolene.dom.GridBindException
All Implemented Interfaces:
java.io.Serializable

public final class GridBindException
extends java.lang.RuntimeException

Exception thrown by the grid's bind method. It's a wrapper around exceptions thrown by BeanUtils. Specifically: IllegalAccessException InvocationTargetException NoSuchMethodException

Since:
Sep 1, 2008 7:33:41 AM
Author:
Dan Howard
See Also:
Serialized Form

Constructor Summary
GridBindException()
           
GridBindException(java.lang.String message)
          Constructs the exception with the specified message string.
GridBindException(java.lang.String message, java.lang.Throwable cause)
          Constructs the exception with the specified message string and cause.
GridBindException(java.lang.Throwable cause)
          Constructs the exception with the specified cause.
 
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
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

GridBindException

public GridBindException()

GridBindException

public GridBindException(java.lang.String message)
Constructs the exception with the specified message string.

Parameters:
message - - message string

GridBindException

public GridBindException(java.lang.Throwable cause)
Constructs the exception with the specified cause.

Parameters:
cause - - cause of the exception

GridBindException

public GridBindException(java.lang.String message,
                         java.lang.Throwable cause)
Constructs the exception with the specified message string and cause.

Parameters:
message - - message string
cause - - cause of the exception