blob: 6c8c4a91eb9ba2400edb66760ef905218e3ee758 [file] [log] [blame]
package com.siyeh.ipp.exceptions.detail;
import java.util.List;
class Foreach {
void foo(List<String> list) {
try {
for (String s : list) {
throw new IllegalArgumentException();
}
} catch (IllegalArgumentException e) {
}
}
}