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