/** * * 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 #include namespace pacpus { class FILELIB_API DbiteException : public std::exception { public: /// @todo Documentation DbiteException(); /// @todo Documentation DbiteException(const char * what); /// @todo Documentation ~DbiteException() throw(); /// @todo Documentation virtual const char * what() const throw(); private: std::string mWhat; }; } // namespace pacpus #endif // DEF_PACPUS_DBITEEXCEPTION_H