Qt IOC Container 3.5


PluginLoadingException.h

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