blob: 4c11cfc2ac4bba58e12b3cc3ff25a861a5b1cb03 [file] [log] [blame]
package com.siyeh.ipp.exceptions.detail;
class Simple {
void foo() {
<caret>try{
if (true) {
throw new IllegalArgumentException();
} else {
throw new NullPointerException();
}
} catch (RuntimeException e) {
}
}
}