org.apache.qpid.test.utils
Class ReflectionUtilsException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.apache.qpid.test.utils.ReflectionUtilsException
All Implemented Interfaces:
Serializable

public class ReflectionUtilsException
extends RuntimeException

Wraps a checked exception that occurs when ReflectionUtils encounters checked exceptions using standard Java reflection methods.

CRC Card
Responsibilities Collaborations
Wrap a checked reflection exception.

See Also:
Serialized Form

Constructor Summary
ReflectionUtilsException(String message, Throwable cause)
          Creates a runtime reflection exception, from a checked one.
 
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

ReflectionUtilsException

public ReflectionUtilsException(String message,
                                Throwable cause)
Creates a runtime reflection exception, from a checked one.

Parameters:
message - The message.
cause - The causing exception.


Licensed to the Apache Software Foundation