Qt IOC Container 3.5


SetPropertyFailException.h

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