0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/libdeno/exceptions.h

17 lines
454 B
C
Raw Normal View History

2019-01-29 21:31:59 -05:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2019-01-29 11:32:40 -05:00
#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_