00001 #include "exceptions.h" 00002 00003 freedaisy::Exceptions::BaseException::BaseException(std::string msg) { 00004 message = msg; 00005 } 00006 00007 freedaisy::Exceptions::BaseException::BaseException() { 00008 message = std::string(); 00009 } 00010 00011 std::string freedaisy::Exceptions::BaseException::getMessage() { 00012 return message; 00013 }
1.4.6