src/exceptions.cpp

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 }

Generated on Sun Jun 25 20:48:22 2006 for libdaisy by  doxygen 1.4.6