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