Mercurial > dedupe
view Exception/ValueExistsException.hpp @ 93:308a718812ba
Small refactoring to allow lazy commits.
| author | Tom Fredrik Blenning Klaussen <bfg@bfgconsult.no> |
|---|---|
| date | Tue, 22 Oct 2013 11:53:54 +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
