#include "IOException.hpp"

IOException::IOException(const QString& errorMsg) : Exception(errorMsg)
{
}

void IOException::raise() const
{
  throw *this;
}
