Mercurial > dedupe
view Exception/NoSuchValueException.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 "NoSuchValueException.hpp" NoSuchValueException::NoSuchValueException(const QString& errorMsg) : Exception(errorMsg) { } void NoSuchValueException::raise() const { throw *this; }
