Warning.java revision 579d7739c53a2707ad711a2d2cae46d7d782f061
1399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger/*
2399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger * Copyright (C) 2008 The Android Open Source Project
3399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger *
4399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger * Licensed under the Apache License, Version 2.0 (the "License");
5399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger * you may not use this file except in compliance with the License.
6399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger * You may obtain a copy of the License at
7399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger *
8399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger *      http://www.apache.org/licenses/LICENSE-2.0
9399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger *
10399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger * Unless required by applicable law or agreed to in writing, software
11399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger * distributed under the License is distributed on an "AS IS" BASIS,
12399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger * See the License for the specific language governing permissions and
14399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger * limitations under the License.
15399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger */
16399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger
17399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettingerpackage com.android.dx.util;
18399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger
19399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger/**
20399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger * Exception which is meant to indicate a non-fatal warning.
21399f7d09e0c45af54b77b4ab9508d6f23759b927Scott Ettinger */
22public class Warning extends RuntimeException {
23    /**
24     * Constructs an instance.
25     *
26     * @param message human-oriented message
27     */
28    public Warning(String message) {
29        super(message);
30    }
31}
32