Debugger: do not write exception to log in some valid cases

This commit is contained in:
Natalia Ukhorskaya
2016-01-29 14:11:08 +03:00
parent 45f96f8f32
commit 51ea804d88
2 changed files with 29 additions and 20 deletions
@@ -4,12 +4,12 @@ import java.util.ArrayList
fun throwException() {
// EXPRESSION: fail()
// RESULT: Exception occurred in target VM: Method threw 'java.lang.UnsupportedOperationException' exception.
// RESULT: Method threw 'java.lang.UnsupportedOperationException' exception.
//Breakpoint!
val a = 1
// EXPRESSION: fail()
// RESULT: Exception occurred in target VM: Method threw 'java.lang.UnsupportedOperationException' exception.
// RESULT: Method threw 'java.lang.UnsupportedOperationException' exception.
//Breakpoint!
val b = 1
}