1b39f051631250c49936a475d0e64584afb7f1b93Chet Haase/*
2b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * Copyright (C) 2011 The Android Open Source Project
3b39f051631250c49936a475d0e64584afb7f1b93Chet Haase *
4b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * Licensed under the Apache License, Version 2.0 (the "License");
5b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * you may not use this file except in compliance with the License.
6b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * You may obtain a copy of the License at
7b39f051631250c49936a475d0e64584afb7f1b93Chet Haase *
8b39f051631250c49936a475d0e64584afb7f1b93Chet Haase *      http://www.apache.org/licenses/LICENSE-2.0
9b39f051631250c49936a475d0e64584afb7f1b93Chet Haase *
10b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * Unless required by applicable law or agreed to in writing, software
11b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * distributed under the License is distributed on an "AS IS" BASIS,
12b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * See the License for the specific language governing permissions and
14b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * limitations under the License.
15b39f051631250c49936a475d0e64584afb7f1b93Chet Haase */
16b39f051631250c49936a475d0e64584afb7f1b93Chet Haasepackage android.util;
17b39f051631250c49936a475d0e64584afb7f1b93Chet Haase
18b39f051631250c49936a475d0e64584afb7f1b93Chet Haase/**
19b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * Thrown when code requests a {@link Property} on a class that does
20b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * not expose the appropriate method or field.
21b39f051631250c49936a475d0e64584afb7f1b93Chet Haase *
22b39f051631250c49936a475d0e64584afb7f1b93Chet Haase * @see Property#of(java.lang.Class, java.lang.Class, java.lang.String)
23b39f051631250c49936a475d0e64584afb7f1b93Chet Haase */
24b39f051631250c49936a475d0e64584afb7f1b93Chet Haasepublic class NoSuchPropertyException extends RuntimeException {
25b39f051631250c49936a475d0e64584afb7f1b93Chet Haase
26b39f051631250c49936a475d0e64584afb7f1b93Chet Haase    public NoSuchPropertyException(String s) {
27b39f051631250c49936a475d0e64584afb7f1b93Chet Haase        super(s);
28b39f051631250c49936a475d0e64584afb7f1b93Chet Haase    }
29b39f051631250c49936a475d0e64584afb7f1b93Chet Haase
30b39f051631250c49936a475d0e64584afb7f1b93Chet Haase}
31