view IOException.hpp @ 14:e60d6caceb62

Fix error in boost findfile traversal. Remove debug info.
author Tom Fredrik Blenning Klaussen <bfg@sim.no>
date Fri, 24 Aug 2012 23:02:01 +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