Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Friends | List of all members
v8::TryCatch Class Reference

#include <v8-exception.h>

Public Member Functions

 TryCatch (Isolate *isolate)
 
 ~TryCatch ()
 
bool HasCaught () const
 
bool CanContinue () const
 
bool HasTerminated () const
 
Local< ValueReThrow ()
 
Local< ValueException () const
 
MaybeLocal< ValueStackTrace (Local< Context > context) const
 
Local< v8::MessageMessage () 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 MaybeLocal< ValueStackTrace (Local< Context > context, Local< Value > exception)
 

Friends

class internal::Isolate
 
class internal::ThreadLocalTop
 

Detailed Description

An external exception handler.

Examples
process.cc, and shell.cc.

Constructor & Destructor Documentation

◆ TryCatch() [1/2]

v8::TryCatch::TryCatch ( Isolate isolate)
explicit

Creates a new try/catch block and registers it with v8. Note that all TryCatch blocks should be stack allocated because the memory location itself is compared against JavaScript try/catch blocks.

◆ ~TryCatch()

v8::TryCatch::~TryCatch ( )

Unregisters and deletes this try/catch block.

◆ TryCatch() [2/2]

v8::TryCatch::TryCatch ( const TryCatch )
delete

Member Function Documentation

◆ CanContinue()

bool v8::TryCatch::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.

◆ Exception()

Local< Value > v8::TryCatch::Exception ( ) const

Returns the exception caught by this try/catch block. If no exception has been caught an empty handle is returned.

Examples
shell.cc.

◆ HasCaught()

bool v8::TryCatch::HasCaught ( ) const

Returns true if an exception has been caught by this try/catch block.

◆ HasTerminated()

bool v8::TryCatch::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.

◆ IsVerbose()

bool v8::TryCatch::IsVerbose ( ) const

Returns true if verbosity is enabled.

◆ Message()

Local< v8::Message > v8::TryCatch::Message ( ) const

Returns the message associated with this exception. If there is no message associated an empty handle is returned.

Examples
shell.cc.

◆ operator=()

void v8::TryCatch::operator= ( const TryCatch )
delete

◆ Reset()

void v8::TryCatch::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.

◆ ReThrow()

Local< Value > v8::TryCatch::ReThrow ( )

Throws the exception caught by this TryCatch in a way that avoids it being caught again by this same TryCatch. As with ThrowException it is illegal to execute any JavaScript operations after calling ReThrow; the caller must return immediately to where the exception is caught.

◆ SetCaptureMessage()

void v8::TryCatch::SetCaptureMessage ( bool  value)

Set whether or not this TryCatch should capture a Message object which holds source information about where the exception occurred. True by default.

◆ SetVerbose()

void v8::TryCatch::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.

◆ StackTrace() [1/2]

MaybeLocal< Value > v8::TryCatch::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.

◆ StackTrace() [2/2]

static MaybeLocal< Value > v8::TryCatch::StackTrace ( Local< Context context,
Local< Value exception 
)
static

Returns the .stack property of an object. If no .stack property is present an empty handle is returned.

Examples
shell.cc.

Friends And Related Function Documentation

◆ internal::Isolate

friend class internal::Isolate
friend

◆ internal::ThreadLocalTop

friend class internal::ThreadLocalTop
friend

The documentation for this class was generated from the following file: