Mercurial > dedupe
view Exception/ValueExistsException.hpp @ 90:7b7a959c993b
Prepare some more queries.
| author | Tom Fredrik Blenning Klaussen <bfg@bfgconsult.no> |
|---|---|
| date | Mon, 21 Oct 2013 16:20:38 +0200 |
| parents | c9447697609f |
| children |
line wrap: on
line source
#ifndef VALUEEXISTSEXCEPTION_HPP #define VALUEEXISTSEXCEPTION_HPP #include "Exception.hpp" class ValueExistsException : public Exception { public: ValueExistsException(const string_t& errorMsg = string_t()) : Exception(errorMsg) {} virtual void raise() const; }; #endif //VALUEEXISTSEXCEPTION_HPP
