Top Description Fields Constructors
java.lang

public Class ReflectiveOperationException

extends Exception
Class Inheritance
Known Direct Subclasses
java.lang.reflect.InvocationTargetException, java.lang.reflect.Proxy.InvocationException, java.lang.ClassNotFoundException, java.lang.IllegalAccessException, java.lang.InstantiationException, java.lang.NoSuchFieldException, java.lang.NoSuchMethodException

Common superclass of exceptions thrown by reflective operations in core reflection.
Since
1.7
See Also
LinkageError

Field Summary

Modifier and TypeField and Description
pack-priv static final long

Constructor Summary

AccessConstructor and Description
public
ReflectiveOperationException()

Constructs a new exception with null as its detail message.

public
ReflectiveOperationException(String
the detail message. The detail message is saved for later retrieval by the getMessage() method.
message
)

Constructs a new exception with the specified detail message.

public
ReflectiveOperationException(String
the detail message (which is saved for later retrieval by the getMessage() method).
message
,
Throwable
the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
cause
)

Constructs a new exception with the specified detail message and cause.

public
ReflectiveOperationException(Throwable
the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
cause
)

Constructs a new exception with the specified cause and a detail message of (cause==null ?

Field Detail

serialVersionUIDback to summary
pack-priv static final long serialVersionUID

Hides java.lang.Exception.serialVersionUID.

Annotations
@Serial

Constructor Detail

ReflectiveOperationExceptionback to summary
public ReflectiveOperationException()

Constructs a new exception with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to initCause.

ReflectiveOperationExceptionback to summary
public ReflectiveOperationException(String message)

Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call to initCause.

Parameters
message:String

the detail message. The detail message is saved for later retrieval by the getMessage() method.

ReflectiveOperationExceptionback to summary
public ReflectiveOperationException(String message, Throwable cause)

Constructs a new exception with the specified detail message and cause.

Note that the detail message associated with cause is not automatically incorporated in this exception's detail message.

Parameters
message:String

the detail message (which is saved for later retrieval by the getMessage() method).

cause:Throwable

the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

ReflectiveOperationExceptionback to summary
public ReflectiveOperationException(Throwable cause)

Constructs a new exception with the specified cause and a detail message of (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause).

Parameters
cause:Throwable

the cause (which is saved for later retrieval by the getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)