1038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly/*
2590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pelly * Copyright (C) 2010, The Android Open Source Project
3038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly *
4038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly * Licensed under the Apache License, Version 2.0 (the "License");
5038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly * you may not use this file except in compliance with the License.
6038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly * You may obtain a copy of the License at
7038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly *
8590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pelly *     http://www.apache.org/licenses/LICENSE-2.0
9038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly *
10038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly * Unless required by applicable law or agreed to in writing, software
11038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly * distributed under the License is distributed on an "AS IS" BASIS,
12038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly * See the License for the specific language governing permissions and
14038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly * limitations under the License.
15038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly */
16038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly
17590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pellypackage android.nfc;
18038cabe0247ee46df62f9363f1a303bc5b9c1028Nick Pelly
19590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pellypublic class FormatException extends Exception {
20590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pelly    public FormatException() {
21590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pelly        super();
22590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pelly    }
23590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pelly
24590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pelly    public FormatException(String message) {
25590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pelly        super(message);
26590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pelly    }
27a356bf1cd81614a94ef6c720998792480ade4c84Nick Pelly
28a356bf1cd81614a94ef6c720998792480ade4c84Nick Pelly    public FormatException(String message, Throwable e) {
29a356bf1cd81614a94ef6c720998792480ade4c84Nick Pelly        super(message, e);
30a356bf1cd81614a94ef6c720998792480ade4c84Nick Pelly    }
31590b73bc5b8e5f7b59bff1d9264a52388a5162e6Nick Pelly}
32