12272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu/*
22272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu * Copyright (C) 2014 The Android Open Source Project
32272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu *
42272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu * Licensed under the Apache License, Version 2.0 (the "License");
52272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu * you may not use this file except in compliance with the License.
62272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu * You may obtain a copy of the License at
72272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu *
82272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu *      http://www.apache.org/licenses/LICENSE-2.0
92272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu *
102272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu * Unless required by applicable law or agreed to in writing, software
112272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu * distributed under the License is distributed on an "AS IS" BASIS,
122272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu * See the License for the specific language governing permissions and
142272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu * limitations under the License.
152272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu */
162272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu
172272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hupackage com.android.camera.one;
182272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu
192272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hupublic class OneCameraAccessException extends Exception {
202272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu    private static final long serialVersionUID = 1L;
212272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu
222272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu    public OneCameraAccessException(String message) {
232272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu        super(message);
242272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu    }
252272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu
262272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu    public OneCameraAccessException(String message, Throwable cause) {
272272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu        super(message, cause);
282272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu    }
29f51ad7e460fc231b42c137fc11d9edac2f3f0923Senpo Hu
30f51ad7e460fc231b42c137fc11d9edac2f3f0923Senpo Hu    public OneCameraAccessException(Throwable cause) {
31f51ad7e460fc231b42c137fc11d9edac2f3f0923Senpo Hu        super(cause);
32f51ad7e460fc231b42c137fc11d9edac2f3f0923Senpo Hu    }
332272f8a6bfc8adca8ada7a215bef038d45256085Senpo Hu}
34