diff options
author | chai <chaifix@163.com> | 2018-11-25 00:11:28 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2018-11-25 00:11:28 +0800 |
commit | e8e12b11db220160eb63727fb03548410bf3afd2 (patch) | |
tree | a36d62b783e97af9047469955b1aa0ddae6b4627 /src/libjin/common/je_exception.h | |
parent | 42421575d2e17b5c57ff0034c037b651bd6d1119 (diff) |
*misc
Diffstat (limited to 'src/libjin/common/je_exception.h')
-rw-r--r-- | src/libjin/common/je_exception.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libjin/common/je_exception.h b/src/libjin/common/je_exception.h index c319ebd..71caa5a 100644 --- a/src/libjin/common/je_exception.h +++ b/src/libjin/common/je_exception.h @@ -4,16 +4,17 @@ #include <exception> #include <string> +#include "je_object.h" + namespace JinEngine { /// /// Jin Exception. /// - class Exception : public std::exception + class Exception : public Object, public std::exception { public: - /// /// Creates a new Exception according to printf-rules. /// |