160d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber/*
260d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber * Copyright (C) 2012 The Android Open Source Project
360d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber *
460d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber * Licensed under the Apache License, Version 2.0 (the "License");
560d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber * you may not use this file except in compliance with the License.
660d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber * You may obtain a copy of the License at
760d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber *
860d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber *      http://www.apache.org/licenses/LICENSE-2.0
960d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber *
1060d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber * Unless required by applicable law or agreed to in writing, software
1160d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber * distributed under the License is distributed on an "AS IS" BASIS,
1260d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1360d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber * See the License for the specific language governing permissions and
1460d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber * limitations under the License.
1560d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber */
1660d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber
1760d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huberpackage android.media;
1860d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber
1960d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber/**
2060d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber * Exception thrown if MediaCrypto object could not be instantiated for
2160d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber * whatever reason.
2260d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber */
2360d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huberpublic final class MediaCryptoException extends Exception {
2460d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber    public MediaCryptoException(String detailMessage) {
2560d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber        super(detailMessage);
2660d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber    }
2760d610bf103379277a4b29a7ead4f013f6128e4eAndreas Huber}
28