5#ifndef MOLYBDEN_JS_ERROR_HPP
6#define MOLYBDEN_JS_ERROR_HPP
15enum class ExceptionType {
23 kHierarchyRequestError,
25 kInvalidCharacterError,
26 kNoModificationAllowedError,
32 kInvalidModificationError,
42 kInvalidNodeTypeError,
53 kTransactionInactiveError,
63 kPermissionDeniedError,
Represents a JavaScript exception.
Definition js_error.hpp:83
ExceptionType type
The type of the exception.
Definition js_error.hpp:92
std::string message
The message of the exception.
Definition js_error.hpp:87