Remove unused Thread parameter from ThrowArithmeticExceptionDivideByZero.

The "Thread* self" parameter of ThrowArithmeticExceptionDivideByZero is unused.
This CL removes it and updates all call sites.

Change-Id: I5cff86e97dd82dd07f4c174a3d8fbcf980da4aea
diff --git a/src/common_throws.cc b/src/common_throws.cc
index 1e114bb..66e512e 100644
--- a/src/common_throws.cc
+++ b/src/common_throws.cc
@@ -68,7 +68,7 @@
 
 // ArithmeticException
 
-void ThrowArithmeticExceptionDivideByZero(Thread* self) {
+void ThrowArithmeticExceptionDivideByZero() {
   ThrowException(NULL, "Ljava/lang/ArithmeticException;", NULL, "divide by zero");
 }