15 lines
284 B
C++
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
|