00001 #include "stringexception.h"
00002
00003 using namespace tools;
00004
00005
00006 StringException::StringException(const QString& message) : msg(message)
00007 {
00008 }
00009
00010 StringException::~StringException() throw()
00011 {
00012 }
00013
00014 const char* StringException::what() const throw()
00015 {
00016 return msg.toAscii().data();
00017 }
00018
00019 const QString& StringException::message() const
00020 {
00021 return msg;
00022 }