diff options
Diffstat (limited to 'runtime/debugger.cc')
-rw-r--r-- | runtime/debugger.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runtime/debugger.cc b/runtime/debugger.cc index fe0bad2111..af56810fcb 100644 --- a/runtime/debugger.cc +++ b/runtime/debugger.cc @@ -262,6 +262,13 @@ class DebugInstrumentationListener FINAL : public instrumentation::Instrumentati << " " << dex_pc; } + // TODO Might be worth it to post ExceptionCatch event. + void ExceptionHandled(Thread* thread ATTRIBUTE_UNUSED, + Handle<mirror::Throwable> throwable ATTRIBUTE_UNUSED) OVERRIDE { + LOG(ERROR) << "Unexpected exception handled event in debugger"; + } + + private: static bool IsReturn(ArtMethod* method, uint32_t dex_pc) REQUIRES_SHARED(Locks::mutator_lock_) { |