Class RemoteReflectionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.jk.core.reflection.common.RemoteReflectionException
All Implemented Interfaces:
Serializable

public class RemoteReflectionException extends RuntimeException
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 Details

    • RemoteReflectionException

      public RemoteReflectionException()
      This method constructs a new RemoteReflectionException 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

      public RemoteReflectionException(String message)
      This method constructs a RemoteReflectionException with a specific error message.
      Parameters:
      message - Specifies the error message explaining the reason for the exception.
    • RemoteReflectionException

      public RemoteReflectionException(String message, Throwable cause)
      This method constructs a RemoteReflectionException 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

      public RemoteReflectionException(Throwable cause)
      This method constructs a RemoteReflectionException with a cause.
      Parameters:
      cause - Specifies the cause of this exception.