Package com.jk.core.reflection.common
Class RemoteReflectionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.jk.core.reflection.common.RemoteReflectionException
- All Implemented Interfaces:
Serializable
This class represent exceptions related to remote reflection operations.
This exception is a subclass of RuntimeException
.
- Version:
- 1.0
- Author:
- Dr. Jalal H. Kiswani
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionThis method constructs a newRemoteReflectionException
without any specified errors or causes.RemoteReflectionException
(String message) This method constructs aRemoteReflectionException
with a specific error message.RemoteReflectionException
(String message, Throwable cause) This method constructs aRemoteReflectionException
with a specific error message and a cause.This method constructs aRemoteReflectionException
with a cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
RemoteReflectionException
public RemoteReflectionException()This method constructs a newRemoteReflectionException
without any specified errors or causes.This constructor is typically used when the exception is thrown to represent a specific error condition without additional details.
-
RemoteReflectionException
This method constructs aRemoteReflectionException
with a specific error message.- Parameters:
message
- Specifies the error message explaining the reason for the exception.
-
RemoteReflectionException
This method constructs aRemoteReflectionException
with a specific error message and a cause.- Parameters:
message
- Specifies the error message explaining the reason for the exception.cause
- Specifies the cause of this exception.
-
RemoteReflectionException
This method constructs aRemoteReflectionException
with a cause.- Parameters:
cause
- Specifies the cause of this exception.
-