view Exception/IOException.hpp @ 49:f8d0ea827db3

Use BitArray.
author Tom Fredrik Blenning Klaussen <bfg@blenning.no>
date Mon, 10 Sep 2012 23:59:46 +0200
parents b2c2c2bf2bbd
children c9447697609f
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