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 newRemoteReflectionExceptionwithout any specified errors or causes.RemoteReflectionException(String message) This method constructs aRemoteReflectionExceptionwith a specific error message.RemoteReflectionException(String message, Throwable cause) This method constructs aRemoteReflectionExceptionwith a specific error message and a cause.This method constructs aRemoteReflectionExceptionwith 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 newRemoteReflectionExceptionwithout 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 aRemoteReflectionExceptionwith a specific error message.- Parameters:
 message- Specifies the error message explaining the reason for the exception.
 - 
RemoteReflectionException
This method constructs aRemoteReflectionExceptionwith 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 aRemoteReflectionExceptionwith a cause.- Parameters:
 cause- Specifies the cause of this exception.
 
 -