|
Teuchos - Trilinos Tools Package
Version of the Day
|
00001 // @HEADER 00002 // *********************************************************************** 00003 // 00004 // Teuchos: Common Tools Package 00005 // Copyright (2004) Sandia Corporation 00006 // 00007 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00008 // license for use of this work by or on behalf of the U.S. Government. 00009 // 00010 // Redistribution and use in source and binary forms, with or without 00011 // modification, are permitted provided that the following conditions are 00012 // met: 00013 // 00014 // 1. Redistributions of source code must retain the above copyright 00015 // notice, this list of conditions and the following disclaimer. 00016 // 00017 // 2. Redistributions in binary form must reproduce the above copyright 00018 // notice, this list of conditions and the following disclaimer in the 00019 // documentation and/or other materials provided with the distribution. 00020 // 00021 // 3. Neither the name of the Corporation nor the names of the 00022 // contributors may be used to endorse or promote products derived from 00023 // this software without specific prior written permission. 00024 // 00025 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY 00026 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00027 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 00028 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE 00029 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 00030 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 00031 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 00032 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 00033 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 00034 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00035 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00036 // 00037 // Questions? Contact Michael A. Heroux (maherou@sandia.gov) 00038 // 00039 // *********************************************************************** 00040 // @HEADER 00041 00042 00043 #ifndef TEUCHOS_XMLDEPENDENCYEXCEPTIONS_HPP_ 00044 #define TEUCHOS_XMLDEPENDENCYEXCEPTIONS_HPP_ 00045 00051 #include <stdexcept> 00052 00053 namespace Teuchos { 00054 00058 class MissingDependeeException : public std::logic_error{ 00059 00060 public: 00061 00067 MissingDependeeException( 00068 const std::string& what_arg):std::logic_error(what_arg){} 00069 00070 }; 00071 00075 class MissingDependentException : public std::logic_error{ 00076 00077 public: 00078 00084 MissingDependentException( 00085 const std::string& what_arg):std::logic_error(what_arg){} 00086 00087 }; 00088 00092 class MissingDependeesException : public std::logic_error{ 00093 00094 public: 00095 00101 MissingDependeesException( 00102 const std::string& what_arg):std::logic_error(what_arg){} 00103 00104 }; 00105 00109 class MissingDependentsException : public std::logic_error{ 00110 00111 public: 00112 00118 MissingDependentsException( 00119 const std::string& what_arg):std::logic_error(what_arg){} 00120 00121 }; 00122 00126 class TooManyDependeesException : public std::logic_error{ 00127 00128 public: 00129 00135 TooManyDependeesException( 00136 const std::string& what_arg):std::logic_error(what_arg){} 00137 00138 }; 00139 00143 class ValuesTagMissingException : public std::logic_error{ 00144 00145 public: 00146 00152 ValuesTagMissingException( 00153 const std::string& what_arg):std::logic_error(what_arg){} 00154 00155 }; 00156 00160 class MissingRangesAndValidatorsTagException : public std::logic_error{ 00161 00162 public: 00163 00169 MissingRangesAndValidatorsTagException( 00170 const std::string& what_arg):std::logic_error(what_arg){} 00171 00172 }; 00173 00174 00178 class MissingValuesAndValidatorsTagException : public std::logic_error{ 00179 00180 public: 00181 00187 MissingValuesAndValidatorsTagException( 00188 const std::string& what_arg):std::logic_error(what_arg){} 00189 00190 }; 00191 00195 class MissingConditionTagException : public std::logic_error{ 00196 00197 public: 00198 00204 MissingConditionTagException( 00205 const std::string& what_arg):std::logic_error(what_arg){} 00206 00207 }; 00208 00212 class MissingValidatorException : public std::logic_error{ 00213 00214 public: 00215 00221 MissingValidatorException( 00222 const std::string& what_arg):std::logic_error(what_arg){} 00223 00224 }; 00225 00226 00228 class CantFindDependencyConverterException : public std::logic_error{ 00229 00230 public: 00231 00237 CantFindDependencyConverterException( 00238 const std::string& what_arg):std::logic_error(what_arg){} 00239 00240 }; 00241 00242 00243 00244 } // namespace Teuchos 00245 #endif //TEUCHOS_XMLDEPENDENCYEXCEPTIONS_HPP_
1.7.6.1