Deep toString for exception string.

This commit is contained in:
Ruben Dijkstra 2014-04-23 19:14:42 +02:00
parent 30c66e177f
commit d2cc339bc4

View File

@ -117,7 +117,7 @@ public class ConstructorUtils {
}
}
throw new ExpressionException("No constructor found for " + type.toString()
+ " with parameters: " + Arrays.toString(givenTypes));
+ " with parameters: " + Arrays.deepToString(givenTypes));
}
/**