summaryrefslogtreecommitdiffstats
path: root/vm/Exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'vm/Exception.cpp')
-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);
}