13ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker/*
23ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker * Copyright (C) 2013 The Android Open Source Project
33ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker *
43ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker * Licensed under the Apache License, Version 2.0 (the "License");
53ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker * you may not use this file except in compliance with the License.
63ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker * You may obtain a copy of the License at
73ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker *
83ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker *      http://www.apache.org/licenses/LICENSE-2.0
93ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker *
103ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker * Unless required by applicable law or agreed to in writing, software
113ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker * distributed under the License is distributed on an "AS IS" BASIS,
123ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
133ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker * See the License for the specific language governing permissions and
143ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker * limitations under the License.
153ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker */
163ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker
173ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinkerpackage android.media;
183ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker
193ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker/**
203ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker * Exception thrown when an operation on a MediaDrm object is attempted
213ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker * and hardware resources are not available, due to being in use.
223ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker */
233ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinkerpublic final class ResourceBusyException extends MediaDrmException {
243ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker    public ResourceBusyException(String detailMessage) {
253ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker        super(detailMessage);
263ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker    }
273ed38266c1647c6219ae5ad89cb3f867cf66caaaJeff Tinker}
28