Exception.h
Go to the documentation of this file.
00001 /*
00002  * Copyright (C) 2006-2011, SRI International (R)
00003  *
00004  * This program is free software: you can redistribute it and/or modify
00005  * it under the terms of the GNU Lesser General Public License as published by
00006  * the Free Software Foundation, either version 3 of the License, or
00007  * (at your option) any later version.
00008  *
00009  * This program is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  * GNU Lesser General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU Lesser General Public License
00015  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
00016  */
00017 
00018 #pragma once
00019 
00020 #ifndef __OpenKarto_Exception_h__
00021 #define __OpenKarto_Exception_h__
00022 
00023 #include <OpenKarto/String.h>
00024 
00025 namespace karto
00026 {
00027 
00029 
00030 
00034   
00038   class KARTO_EXPORT Exception
00039   {
00040   public:    
00045     Exception(const char* pMessage);    
00046 
00052     Exception(const String& rMessage = "Karto Exception", kt_int32s errorCode = 0);    
00053     
00057     Exception(const Exception& rOther);
00058     
00062     virtual ~Exception();
00063     
00064   public:
00068     Exception& operator=(const Exception& rException);
00069     
00070   public:
00075     const String& GetErrorMessage() const;
00076     
00081     kt_int32s GetErrorCode();
00082     
00083   public:
00087     friend KARTO_FORCEINLINE std::ostream& operator << (std::ostream& rStream, Exception& rException)
00088     {
00089       rStream << "Karto Fatal Error: " << std::endl;
00090       rStream << " ==> error code: " << rException.GetErrorCode() << std::endl;
00091       rStream << " ==> error message: " << rException.GetErrorMessage() << std::endl;
00092       return rStream;
00093     }
00094     
00095   private:
00096     String m_Message;
00097     kt_int32s m_ErrorCode;
00098   }; // class Exception
00099 
00101 }
00102 
00103 #endif // __OpenKarto_Exception_h__


nav2d_karto
Author(s): Sebastian Kasperski
autogenerated on Sun Apr 2 2017 03:53:08