Qt IOC Container 3.5


ObjectDestroyFailException.h

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