/** * * Distributed under the UTC Heudiascy Pacpus License, Version 1.0. * Copyright (c) UTC Heudiasyc 2010 - 2013. All rights reserved. * * See the LICENSE file for more information or a copy at: * http://www.hds.utc.fr/~kurdejma/LICENSE_1_0.txt * */ #ifndef DEF_PACPUS_DBITEEXCEPTION_H #define DEF_PACPUS_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 // DEF_PACPUS_DBITEEXCEPTION_H