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