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