Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
duktape-1.8.0/src-separate/duk_exception.h
Go to the documentation of this file.
1/*
2 * Exception for Duktape internal throws when C++ exceptions are used
3 * for long control transfers.
4 *
5 * Doesn't inherit from any exception base class to minimize the chance
6 * that user code would accidentally catch this exception.
7 */
8
9#ifndef DUK_EXCEPTION_H_INCLUDED
10#define DUK_EXCEPTION_H_INCLUDED
11
12#if defined(DUK_USE_CPP_EXCEPTIONS)
13class duk_internal_exception {
14 /* intentionally empty */
15};
16#endif
17
18#endif /* DUK_EXCEPTION_H_INCLUDED */