blob: 362bbc0e6fc45ae016da6db2c54b1b182f09c5a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// 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_
|