Mercurial > dedupe
view Exception/NoSuchValueException.hpp @ 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
#ifndef NOSUCHVALUEEXCEPTION_HPP #define NOSUCHVALUEEXCEPTION_HPP #include "Exception.hpp" class NoSuchValueException : public Exception { public: NoSuchValueException(const string_t& errMsg = string_t()); virtual void raise() const; }; #endif //NOSUCHVALUEEXCEPTION_HPP
