RuntimeRemoteException

  • RuntimeRemoteException is a subclass of RuntimeException that wraps a RemoteException, signaling a critical error with likely no recovery.

  • It is primarily used for compatibility with the com.google.android.gms:play-services-maps library and is not applicable to the Navigation SDK.

  • This exception indicates a severe issue, usually originating from remote operations, requiring attention for debugging and potential system fixes.

  • It provides a constructor taking a RemoteException as an argument, encapsulating the original exception for further analysis.

public final class RuntimeRemoteException extends RuntimeException

A RuntimeException wrapper for RemoteException. Thrown when normally there is something seriously wrong and there is no way to recover.

RuntimeRemoteException does not apply to the Navigation SDK. It exists for compile time compatibility with com.google.android.gms:play-services-maps only.

Public Constructor Summary

RuntimeRemoteException(RemoteException e)

Inherited Method Summary

Public Constructors

public RuntimeRemoteException (RemoteException e)

Parameters
e