summaryrefslogtreecommitdiff
path: root/src/exception.h
diff options
context:
space:
mode:
author Shih-wei Liao <sliao@google.com> 2011-08-26 14:39:27 -0700
committer Shih-wei Liao <sliao@google.com> 2011-08-26 16:45:52 -0700
commit55df06be4369f5d8ab5eb61a5d22809255171036 (patch)
tree32515b13b01ac3d359a6c171377f5c95599049bb /src/exception.h
parente27955ca3ca960928d4dbd6cb79711fce06950b3 (diff)
Stack Trace Element with its unit test added too.
The unit test passes. Change-Id: I6f6af771cae1387c60c3b511148a347fe3237345
Diffstat (limited to 'src/exception.h')
-rw-r--r--src/exception.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/exception.h b/src/exception.h
deleted file mode 100644
index 5b31e86449..0000000000
--- a/src/exception.h
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2011 Google Inc. All Rights Reserved.
-
-#ifndef ART_SRC_EXCEPTION_H_
-#define ART_SRC_EXCEPTION_H_
-
-#include "class_linker.h"
-#include "dex_file.h"
-#include "object.h"
-#include "thread.h"
-
-namespace art {
-
-struct InternalStackTrace {
- const Method* method;
- const uint16_t* pc;
-};
-
-extern InternalStackTrace *GetStackTrace(uint16_t stack_depth);
-
-}
-
-#endif // ART_SRC_EXCEPTION_H_