Abstract Method Error unit test and fixes.
Change-Id: I14015ffd9f8adca9d0b2d90b91811c920b13716d
diff --git a/src/thread.cc b/src/thread.cc
index 74d62d7..989f56d 100644
--- a/src/thread.cc
+++ b/src/thread.cc
@@ -122,7 +122,7 @@
void ThrowAbstractMethodErrorFromCode(Method* method, Thread* thread, Method** sp) {
*sp = Runtime::Current()->GetCalleeSaveMethod();
thread->SetTopOfStack(sp, 0);
- thread->ThrowNewException("Ljava/lang/AbstractMethodError",
+ thread->ThrowNewException("Ljava/lang/AbstractMethodError;",
"abstract method \"%s\"",
PrettyMethod(method).c_str());
thread->DeliverException();