00001 // Copyright (C) 2006 Alexis ROBERT 00002 00003 #include "exceptions.h" 00004 00005 freedaisy::Exceptions::BaseException::BaseException(std::string msg) { 00006 message = msg; 00007 } 00008 00009 freedaisy::Exceptions::BaseException::BaseException() { 00010 message = std::string(); 00011 } 00012 00013 std::string freedaisy::Exceptions::BaseException::getMessage() { 00014 return message; 00015 }