// Copyright Marek Kurdej 2010 - 2012. // Distributed under the UTC Heudiasyc Pacpus License, Version 1.0. // See accompanying file LICENSE_1_0.txt or copy at // http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt #ifndef DBITEEXCEPTION_H #define DBITEEXCEPTION_H #include #include namespace pacpus { class DbiteException : public std::exception { public: DbiteException(); DbiteException(const char * what); ~DbiteException() throw(); virtual const char * what() const throw(); private: std::string mWhat; }; } // namespace pacpus #endif // DBITEEXCEPTION_H