view IOException.hpp @ 10:ec87a79770ee

Use boost find, to work around problems with QDir.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Thu, 23 Aug 2012 00:26:45 +0200
parents b5943e4bf676
children
line wrap: on
line source

#ifndef IOEXCEPTION_HPP
#define IOEXCEPTION_HPP

#include "Exception.hpp"

class IOException : public Exception {
public:
  IOException(const string_t& errMsg);
};

#endif //IOEXCEPTION_HPP