mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
464 B
18 lines
464 B
/*
|
|
* Exception for Duktape internal throws when C++ exceptions are used
|
|
* for long control transfers.
|
|
*
|
|
* Doesn't inherit from any exception base class to minimize the chance
|
|
* that user code would accidentally catch this exception.
|
|
*/
|
|
|
|
#if !defined(DUK_EXCEPTION_H_INCLUDED)
|
|
#define DUK_EXCEPTION_H_INCLUDED
|
|
|
|
#if defined(DUK_USE_CPP_EXCEPTIONS)
|
|
class duk_internal_exception {
|
|
/* intentionally empty */
|
|
};
|
|
#endif
|
|
|
|
#endif /* DUK_EXCEPTION_H_INCLUDED */
|
|
|