00001 /************************************************************************************ 00002 TerraLib - a library for developing GIS applications. 00003 Copyright © 2001-2007 INPE and Tecgraf/PUC-Rio. 00004 00005 This code is part of the TerraLib library. 00006 This library is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU Lesser General Public 00008 License as published by the Free Software Foundation; either 00009 version 2.1 of the License, or (at your option) any later version. 00010 00011 You should have received a copy of the GNU Lesser General Public 00012 License along with this library. 00013 00014 The authors reassure the license terms regarding the warranties. 00015 They specifically disclaim any warranties, including, but not limited to, 00016 the implied warranties of merchantability and fitness for a particular purpose. 00017 The library provided hereunder is on an "as is" basis, and the authors have no 00018 obligation to provide maintenance, support, updates, enhancements, or modifications. 00019 In no event shall INPE and Tecgraf / PUC-Rio be held liable to any party for direct, 00020 indirect, special, incidental, or consequential damages arising out of the use 00021 of this library and its documentation. 00022 *************************************************************************************/ 00023 /*! \file TeException.h 00024 \brief This file deals Eexception throwing in TerraLib 00025 */ 00026 #ifndef __TERRALIB_INTERNAL_EXCEPTION_H 00027 #define __TERRALIB_INTERNAL_EXCEPTION_H 00028 00029 #if defined(_MSC_VER) /* MSVC Compiler */ 00030 #pragma warning(disable: 4355) 00031 #endif 00032 00033 00034 #include "TeSingleton.h" 00035 #include "TeErrorLog.h" 00036 00037 #include <string> 00038 #include <map> 00039 using namespace std; 00040 00041 00042 //! Provides a class for handling exceptions on Terralib 00043 class TL_DLL TeException { 00044 public: 00045 00046 // -- Contructors 00047 00048 TeException ( TeErrorType msgCode, const string& userText = "", bool hasErrno = false ); 00049 00050 // -- Destructor 00051 00052 virtual ~TeException() {} // base class 00053 00054 // -- Members 00055 00056 string message () const; 00057 TeErrorType code() const; 00058 00059 protected: 00060 00061 // -- Members 00062 00063 //! code associated with TeException 00064 TeErrorType msgCode_; 00065 00066 //! message associated with TeException 00067 string userText_; 00068 00069 private: 00070 00071 }; 00072 #endif 00073
1.5.3