pelib  2.0.0
src/NoDecimalFloatException.cpp
Go to the documentation of this file.
00001 /*
00002  Copyright 2015 Nicolas Melot
00003 
00004  This file is part of Pelib.
00005 
00006  Pelib 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  Pelib 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 Pelib. 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 <pelib/NoDecimalFloatException.hpp>
00029 
00030 namespace pelib
00031 {
00032         NoDecimalFloatException::NoDecimalFloatException(std::string message, float value) : message(message) 
00033         {
00034                 this->value = value;
00035         }
00036 
00037         NoDecimalFloatException::~NoDecimalFloatException() throw() {}
00038 
00039         const char*
00040         NoDecimalFloatException::what() const throw() 
00041         {
00042                 std::string fin = std::string("Float parsing exception: ").append(this->message).c_str();
00043                 const char *message = fin.c_str();
00044                 char *cpy = (char*)malloc(sizeof(char) * (strlen(message) + 1));
00045                 strcpy(cpy, message);
00046                 return cpy;
00047         }
00048 
00049         const float
00050         NoDecimalFloatException::getValue()
00051         {
00052                 return this->value;
00053         }
00054 }