From 76d0612d86cba66df6d7239b6ab51d56f27887a2 Mon Sep 17 00:00:00 2001 From: gengjiawen Date: Thu, 7 Feb 2019 16:03:02 +0800 Subject: [PATCH] src: remove unused class in node_errors.h --- src/node_errors.h | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/node_errors.h b/src/node_errors.h index cea7c108c168f3..28bf6a670f8ecc 100644 --- a/src/node_errors.h +++ b/src/node_errors.h @@ -23,17 +23,6 @@ void AppendExceptionLine(Environment* env, [[noreturn]] void FatalError(const char* location, const char* message); void OnFatalError(const char* location, const char* message); -// Like a `TryCatch` but exits the process if an exception was caught. -class FatalTryCatch : public v8::TryCatch { - public: - explicit FatalTryCatch(Environment* env) - : TryCatch(env->isolate()), env_(env) {} - ~FatalTryCatch(); - - private: - Environment* env_; -}; - void PrintErrorString(const char* format, ...); void ReportException(Environment* env, const v8::TryCatch& try_catch);