v8
10.1.124 (node 18.2.0)
V8 is Google's open source JavaScript engine
|
#include <v8-exception.h>
Public Member Functions | |
TryCatch (Isolate *isolate) | |
~TryCatch () | |
bool | HasCaught () const |
bool | CanContinue () const |
bool | HasTerminated () const |
Local< Value > | ReThrow () |
Local< Value > | Exception () const |
V8_WARN_UNUSED_RESULT MaybeLocal< Value > | StackTrace (Local< Context > context) const |
Local< v8::Message > | Message () const |
void | Reset () |
void | SetVerbose (bool value) |
bool | IsVerbose () const |
void | SetCaptureMessage (bool value) |
TryCatch (const TryCatch &)=delete | |
void | operator= (const TryCatch &)=delete |
Static Public Member Functions | |
static V8_WARN_UNUSED_RESULT MaybeLocal< Value > | StackTrace (Local< Context > context, Local< Value > exception) |
Friends | |
class | internal::Isolate |
class | internal::ThreadLocalTop |
An external exception handler.
Definition at line 59 of file v8-exception.h.
~TryCatch | ( | ) |
Unregisters and deletes this try/catch block.
bool CanContinue | ( | ) | const |
For certain types of exceptions, it makes no sense to continue execution.
If CanContinue returns false, the correct action is to perform any C++ cleanup needed and then return. If CanContinue returns false and HasTerminated returns true, it is possible to call CancelTerminateExecution in order to continue calling into the engine.
Returns the exception caught by this try/catch block. If no exception has been caught an empty handle is returned.
bool HasCaught | ( | ) | const |
Returns true if an exception has been caught by this try/catch block.
bool HasTerminated | ( | ) | const |
Returns true if an exception has been caught due to script execution being terminated.
There is no JavaScript representation of an execution termination exception. Such exceptions are thrown when the TerminateExecution methods are called to terminate a long-running script.
If such an exception has been thrown, HasTerminated will return true, indicating that it is possible to call CancelTerminateExecution in order to continue calling into the engine.
bool IsVerbose | ( | ) | const |
Returns true if verbosity is enabled.
Local<v8::Message> Message | ( | ) | const |
Returns the message associated with this exception. If there is no message associated an empty handle is returned.
|
delete |
void Reset | ( | ) |
Clears any exceptions that may have been caught by this try/catch block. After this method has been called, HasCaught() will return false. Cancels the scheduled exception if it is caught and ReThrow() is not called before.
It is not necessary to clear a try/catch block before using it again; if another exception is thrown the previously caught exception will just be overwritten. However, it is often a good idea since it makes it easier to determine which operation threw a given exception.
void SetCaptureMessage | ( | bool | value | ) |
void SetVerbose | ( | bool | value | ) |
Set verbosity of the external exception handler.
By default, exceptions that are caught by an external exception handler are not reported. Call SetVerbose with true on an external exception handler to have exceptions caught by the handler reported as if they were not caught.
V8_WARN_UNUSED_RESULT MaybeLocal<Value> StackTrace | ( | Local< Context > | context | ) | const |
Returns the .stack property of the thrown object. If no .stack property is present or if this try/catch block has not caught an exception, an empty handle is returned.
|
static |
Returns the .stack property of an object. If no .stack property is present an empty handle is returned.
|
friend |
Definition at line 211 of file v8-exception.h.
|
friend |
Definition at line 212 of file v8-exception.h.