rssguard/src/exceptions/ioexception.h
2015-05-29 08:56:44 +02:00

15 lines
284 B
C++

#ifndef IOEXCEPTION_H
#define IOEXCEPTION_H
#include "exceptions/applicationexception.h"
class IOException : public ApplicationException
{
public:
explicit IOException(const QString &message = QString());
virtual ~IOException();
};
#endif // IOEXCEPTION_H