summaryrefslogtreecommitdiff
path: root/core/java/android/net/SocketLocalAddressChangedException.java
diff options
context:
space:
mode:
authorRemi NGUYEN VAN <reminv@google.com>2021-03-02 01:28:59 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-03-02 01:28:59 +0000
commit7152a8f376b542811bcc26a6841958690eaecad4 (patch)
tree1d2bcf44abe72b8730ba0db8520931ac3e2502eb /core/java/android/net/SocketLocalAddressChangedException.java
parent8c993595595ce553f5751f6b10a3f3bdecda122d (diff)
parent32a606fe54a3377ffe22142d3c7e04f4ab969281 (diff)
Merge "Move QoS API classes to Connectivity" am: 32a606fe54
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1611876 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Idad1f51e7f269c2cef9e836efa668a5a0afd4c5a
Diffstat (limited to 'core/java/android/net/SocketLocalAddressChangedException.java')
-rw-r--r--core/java/android/net/SocketLocalAddressChangedException.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/core/java/android/net/SocketLocalAddressChangedException.java b/core/java/android/net/SocketLocalAddressChangedException.java
deleted file mode 100644
index 9daad83fd13e..000000000000
--- a/core/java/android/net/SocketLocalAddressChangedException.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * Copyright (C) 2021 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.net;
-
-import android.annotation.SystemApi;
-
-/**
- * Thrown when the local address of the socket has changed.
- *
- * @hide
- */
-@SystemApi
-public class SocketLocalAddressChangedException extends Exception {
- /** @hide */
- public SocketLocalAddressChangedException() {
- super("The local address of the socket changed");
- }
-}