crown  1.0.0
src/CrownException.cpp
Go to the documentation of this file.
00001 /*
00002  Copyright 2015 Nicolas Melot
00003 
00004  This file is part of Crown.
00005 
00006  Crown is free software: you can redistribute it and/or modify
00007  it under the terms of the GNU General Public License as published by
00008  the Free Software Foundation, either version 3 of the License, or
00009  (at your option) any later version.
00010 
00011  Crown is distributed in the hope that it will be useful,
00012  but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00014  GNU General Public License for more details.
00015 
00016  You should have received a copy of the GNU General Public License
00017  along with Crown. If not, see <http://www.gnu.org/licenses/>.
00018 */
00019 
00020 
00021 #include <iostream>
00022 #include <cstdlib>
00023 #include <fstream>
00024 #include <string>
00025 #include <boost/regex.hpp>
00026 #include <iomanip>
00027 
00028 #include <crown/CrownException.hpp>
00029 
00030 #ifdef debug
00031 #undef debug
00032 #endif
00033 
00034 #define debug(var) cout << "[" << __FILE__ << ":" << __FUNCTION__ << ":" << __LINE__ << "] " << #var << " = \"" << (var) << "\"" << endl;
00035 
00036 using namespace std;
00037 using namespace pelib;
00038 using namespace crown;
00039 
00040 CrownException::CrownException(const std::string &message): msg(message)
00041 {
00042         // Do nothing else
00043 }
00044 
00045 CrownException::CrownException(const char *message): msg(message)
00046 {
00047         // Do nothing else
00048 }
00049 
00050 CrownException::~CrownException() throw()
00051 {
00052         // Do nothing
00053 }
00054 
00055 const char*
00056 CrownException::what() const throw()
00057 {
00058         std::string fin = std::string("Crown exception: ").append(this->msg).c_str();
00059         const char *message = fin.c_str();
00060         char *cpy = (char*)malloc(sizeof(char) * (strlen(message) + 1));
00061         strcpy(cpy, message);
00062         return cpy;
00063 }