javatools.util
Class ReflectException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--javatools.util.CommonException
                    |
                    +--javatools.util.ReflectException
All Implemented Interfaces:
java.io.Serializable

public class ReflectException
extends CommonException

An exception in reflection.

See Also:
Serialized Form

Constructor Summary
ReflectException(java.lang.String mesg)
          Creates a new ReflectException.
ReflectException(java.lang.String mesg, java.lang.Throwable exception)
          Creates a new ReflectException.
ReflectException(java.lang.Throwable exception)
          Creates a new ReflectException.
 
Methods inherited from class javatools.util.CommonException
getNextException, getStackTrace, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, initCause, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ReflectException

public ReflectException(java.lang.String mesg)
Creates a new ReflectException.

Parameters:
mesg - The message to be put in the exception.

ReflectException

public ReflectException(java.lang.String mesg,
                        java.lang.Throwable exception)
Creates a new ReflectException.

Parameters:
mesg - The message to be put in the exception.
exception - The base exception to use.

ReflectException

public ReflectException(java.lang.Throwable exception)
Creates a new ReflectException.

Parameters:
exception - The base exception to use.