00001 #ifndef INVALIDDATAEXCEPTION_H
00002 #define INVALIDDATAEXCEPTION_H
00003
00004 #include "global.h"
00005 #include "stringexception.h"
00006
00007 namespace tools
00008 {
00009
00010 class TOOLS_EXPORT InvalidDataException : public StringException
00011 {
00012 public:
00013
00014 InvalidDataException(const QString& message);
00015 ~InvalidDataException() throw();
00016
00017 };
00018
00019 }
00020
00021 #endif