Qt IOC Container 3.5


CyclicDependencyException.h

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