src/exceptions.cpp

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 }

Generated on Sun Jun 25 23:35:45 2006 for libdaisy by  doxygen 1.4.6