blob: 02766deeb7e27cd4a8f0a5cfdb5a14cfec7b1a3f [file] [log] [blame]
/*
* Copyright (C) 2017 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 com.android.server.backup.transport;
import android.content.ComponentName;
import android.util.AndroidException;
import com.android.server.backup.TransportManager;
/**
* Exception thrown when the transport is not registered.
*
* @see TransportManager#getTransportDirName(String)
* @see TransportManager#getTransportConfigurationIntent(String)
* @see TransportManager#getTransportDataManagementIntent(String)
* @see TransportManager#getTransportDataManagementLabel(String)
*/
public class TransportNotRegisteredException extends AndroidException {
public TransportNotRegisteredException(String transportName) {
super("Transport " + transportName + " not registered");
}
public TransportNotRegisteredException(ComponentName transportComponent) {
super("Transport for host " + transportComponent + " not registered");
}
}