]> git.proxmox.com Git - ceph.git/blame - ceph/src/civetweb/src/third_party/duktape-1.8.0/src-separate/duk_exception.h
buildsys: switch source download to quincy
[ceph.git] / ceph / src / civetweb / src / third_party / duktape-1.8.0 / src-separate / duk_exception.h
CommitLineData
11fdf7f2
TL
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 */