diff options
| author | 2023-03-23 18:14:19 +0000 | |
|---|---|---|
| committer | 2023-03-23 18:14:19 +0000 | |
| commit | 05fbcfe6db90c3ca6e7337b86e92ccc0e5750d1c (patch) | |
| tree | 5dd426979f0770d13699a341f1847068818f0d96 | |
| parent | 89e6a198574b2d39ea78c9de3a498c38a1716f9a (diff) | |
| parent | 1eba503ef2a79cde2ae69084a791254732bb2ab6 (diff) | |
Merge "RemoteException: more docs"
| -rw-r--r-- | core/java/android/os/RemoteException.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/os/RemoteException.java b/core/java/android/os/RemoteException.java index 878e1413a8c9..970f4192c36c 100644 --- a/core/java/android/os/RemoteException.java +++ b/core/java/android/os/RemoteException.java @@ -21,6 +21,12 @@ import android.util.AndroidException; /** * Parent exception for all Binder remote-invocation errors + * + * Note: not all exceptions from binder services will be subclasses of this. + * For instance, RuntimeException and several subclasses of it may be + * thrown as well as OutOfMemoryException. + * + * One common subclass is {@link DeadObjectException}. */ public class RemoteException extends AndroidException { public RemoteException() { |