YAPOG  0.0.1
Yet Another Pokemon Online Game
DatabaseException.hpp
Go to the documentation of this file.
1 #ifndef YAPOG_DATABASEEXCEPTION_HPP
2 # define YAPOG_DATABASEEXCEPTION_HPP
3 
4 # include "YAPOG/Macros.hpp"
6 # include "YAPOG/System/String.hpp"
7 
8 namespace yap
9 {
11  : public Exception
12  {
13  public:
14  explicit DatabaseException (const String& message);
15  virtual ~DatabaseException () throw ();
16  };
17 } // namespace yap
18 
19 #endif // YAPOG_DATABASEEXCEPTION_HPP