aboutsummaryrefslogtreecommitdiff
path: root/src/libjin/Common/je_exception.h
blob: 19fdedbaf451bd33df17e1ec8fb9d65c6df39421 (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