ObjectNotFoundException.h
Go to the documentation of this file.00001 #ifndef QIC_OBJECT_NOT_FOUND_EXCEPTION_H_
00002 #define QIC_OBJECT_NOT_FOUND_EXCEPTION_H_
00003
00004 #include <QString>
00005 #include <stdexcept>
00006
00007 namespace qic
00008 {
00009
00015 class ObjectNotFoundException : public std::runtime_error
00016 {
00017 public:
00018 ObjectNotFoundException (QString msg)
00019 : std::runtime_error(QString("ObjectNotFoundException: ").append(msg).toStdString()) { }
00020
00021 virtual ~ObjectNotFoundException () throw (){}}
00022 ;
00023
00024 }
00025 ;
00026
00027 #endif