view Exception/IOException.cpp @ 116:d2a7c0913ef1 default tip

Add project README
author Tom Fredrik Blenning <bfg@bfgconsult.no>
date Wed, 20 May 2026 23:25:34 +0200
parents c9447697609f
children
line wrap: on
line source

#include "IOException.hpp"

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

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