blob: cf11f51ce054a34d45ec6a4efcddcc24e5e0accc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef __JE_EXCEPTION_H__
#define __JE_EXCEPTION_H__
#include <exception>
namespace JinEngine
{
///
/// Built-in exception class.
///
class Exception : public std::exception
{
public:
Exception();
const char* what() const throw();
};
} // namespace JinEngine
#endif
|