view IOException.hpp @ 11:f59ee8d3f8ea

Fix error string formatting.
author Tom Fredrik Blenning Klaussen <bfg@sim.no>
date Fri, 24 Aug 2012 22:56:21 +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