Class RemoteException

All Implemented Interfaces:
Serializable

public class RemoteException extends RuntimeException
An exception that wraps an exception that has been thrown in a different JVM.
Since:
3.17
Author:
Eike Stepper
See Also:
  • Constructor Details

    • RemoteException

      public RemoteException()
    • RemoteException

      public RemoteException(String message)
    • RemoteException

      public RemoteException(Throwable cause)
    • RemoteException

      public RemoteException(String message, Throwable cause)
    • RemoteException

      public RemoteException(String message, List<String> exceptionNames, String remoteStackTrace)
      Since:
      3.30
    • RemoteException

      protected RemoteException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
  • Method Details

    • getExceptionNames

      public List<String> getExceptionNames()
      Since:
      3.30
    • getRemoteStackTrace

      public String getRemoteStackTrace()
      Since:
      3.30
    • unwrap

      public RuntimeException unwrap()
    • is

      public static boolean is(Class<? extends Throwable> type, Throwable t)
      Since:
      3.30
    • collectExceptionNames

      public static List<String> collectExceptionNames(Throwable t)
      Since:
      3.30
    • formatStackTrace

      public static String formatStackTrace(Throwable t)
      Since:
      3.30