Qt IOC Container 3.5


FileIOException.h

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