aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavor Bertovic <davor@losinj.com>2014-04-01 11:19:16 -0400
committerDavor Bertovic <davor@losinj.com>2014-04-01 11:19:16 -0400
commit400164f659c3cf8c15d6db8f3c5e12a25d382a56 (patch)
tree4a3c55914aa5951f3bac28b0d1dab49b7dba9572
parent7f546ce9c78a778a24a6c3133f732fd83134a3dd (diff)
Revert "Revert "Change exception message for ArrayStoreException.""
This reverts commit 7f546ce9c78a778a24a6c3133f732fd83134a3dd. Change-Id: I5d6ca8be2d53f0ff6fa9ee8a17849ca4cf127bb8
-rw-r--r--vm/Exception.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/Exception.cpp b/vm/Exception.cpp
index ca7614096..36f2d20c0 100644
--- a/vm/Exception.cpp
+++ b/vm/Exception.cpp
@@ -1225,7 +1225,7 @@ void dvmThrowArrayStoreExceptionNotArray(ClassObject* actual, const char* label)
void dvmThrowArrayStoreExceptionIncompatibleArrays(ClassObject* source, ClassObject* destination)
{
throwTypeError(gDvm.exArrayStoreException,
- "%s and %s are incompatible array types",
+ "Incompatible types: src=%s, dst=%s",
source, destination);
}