diff options
| author | 2019-01-14 12:12:21 -0800 | |
|---|---|---|
| committer | 2019-01-14 12:12:21 -0800 | |
| commit | f54c392021c7c2898ba0474f11ba2f014d23d6ed (patch) | |
| tree | eca7d98e10cd1b898a73b33293e628b611f65b1d | |
| parent | 1cf011cd7658f7f10ae5c802799a79ef91e3ec2b (diff) | |
| parent | ef9221ee721db7aaf3bd7c4c37e9ec27924cba0a (diff) | |
Add AIDL for ParcelableException am: d2715b7c70 am: 910a4c60ab
am: ef9221ee72
Change-Id: I9929f8d4891a1ee43eeb29f62a1741ae8c565587
| -rw-r--r-- | core/java/android/os/ParcelableException.aidl | 18 | 
1 files changed, 18 insertions, 0 deletions
diff --git a/core/java/android/os/ParcelableException.aidl b/core/java/android/os/ParcelableException.aidl new file mode 100644 index 000000000000..d21492212341 --- /dev/null +++ b/core/java/android/os/ParcelableException.aidl @@ -0,0 +1,18 @@ +/* Copyright 2018, The Android Open Source Project +** +** Licensed under the Apache License, Version 2.0 (the "License"); +** you may not use this file except in compliance with the License. +** You may obtain a copy of the License at +** +**     http://www.apache.org/licenses/LICENSE-2.0 +** +** Unless required by applicable law or agreed to in writing, software +** distributed under the License is distributed on an "AS IS" BASIS, +** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +** See the License for the specific language governing permissions and +** limitations under the License. +*/ + +package android.os; + +parcelable ParcelableException;  |