mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
16 lines
454 B
C++
16 lines
454 B
C++
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
#ifndef EXCEPTIONS_H_
|
|
#define EXCEPTIONS_H_
|
|
|
|
#include "third_party/v8/include/v8.h"
|
|
|
|
namespace deno {
|
|
|
|
void HandleException(v8::Local<v8::Context> context,
|
|
v8::Local<v8::Value> exception);
|
|
|
|
void HandleExceptionMessage(v8::Local<v8::Context> context,
|
|
v8::Local<v8::Message> message);
|
|
} // namespace deno
|
|
|
|
#endif // EXCEPTIONS_H_
|