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.
public ReflectionException(Exception e)
Creates a ReflectionException
that wraps the actual java.lang.Exception
.
e
- the wrapped exception.public ReflectionException(Exception e, String message)
Creates a ReflectionException
that wraps the actual java.lang.Exception
with a detail message.
e
- the wrapped exception.message
- the detail message.public Exception getTargetException()
Returns the actual Exception
thrown.
Exception
.public Throwable getCause()
Returns the actual Exception
thrown.
© 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.