W3cubDocs

/OpenJDK 8

Class ReflectionException

All Implemented Interfaces:
Serializable
public class ReflectionException
extends JMException

Represents exceptions thrown in the MBean server when using the java.lang.reflect classes to invoke methods on MBeans. It "wraps" the actual java.lang.Exception thrown.

Since:
1.5

Constructors

ReflectionException

public ReflectionException(Exception e)

Creates a ReflectionException that wraps the actual java.lang.Exception.

Parameters:
e - the wrapped exception.

ReflectionException

public ReflectionException(Exception e,
                           String message)

Creates a ReflectionException that wraps the actual java.lang.Exception with a detail message.

Parameters:
e - the wrapped exception.
message - the detail message.

Methods

getTargetException

public Exception getTargetException()

Returns the actual Exception thrown.

Returns:
the wrapped Exception.

getCause

public Throwable getCause()

Returns the actual Exception thrown.

Overrides:
getCause in class Throwable
Returns:
the wrapped Exception.

© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.