blob: 6d25fc17bd6a16101c07026c90dd9b41da3f42f5 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.os;
Jeff Sharkeyf8880562016-02-26 13:03:01 -070018
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019import android.util.AndroidException;
20
21/**
22 * Parent exception for all Binder remote-invocation errors
23 */
24public class RemoteException extends AndroidException {
25 public RemoteException() {
26 super();
27 }
Jeff Brown0bde66a2011-11-07 12:50:08 -080028
29 public RemoteException(String message) {
30 super(message);
31 }
Jeff Sharkey3a44f3f2014-04-28 17:36:31 -070032
33 /** {@hide} */
34 public RuntimeException rethrowAsRuntimeException() {
35 throw new RuntimeException(this);
36 }
Jeff Sharkeyf8880562016-02-26 13:03:01 -070037
38 /**
39 * Rethrow this exception when we know it came from the system server. This
40 * gives us an opportunity to throw a nice clean
41 * {@link DeadSystemException} signal to avoid spamming logs with
42 * misleading stack traces.
43 * <p>
44 * Apps making calls into the system server may end up persisting internal
45 * state or making security decisions based on the perceived success or
46 * failure of a call, or any default values returned. For this reason, we
47 * want to strongly throw when there was trouble with the transaction.
48 *
49 * @hide
50 */
51 public RuntimeException rethrowFromSystemServer() {
52 if (this instanceof DeadObjectException) {
53 throw new RuntimeException(new DeadSystemException());
54 } else {
55 throw new RuntimeException(this);
56 }
57 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080058}