blob: 78110c3af48de5da5b9c844c783429341387862d [file] [log] [blame]
package com.siyeh.ipp.exceptions.splitMultiCatch;
import java.io.*;
public class Simple {
void foo() {
try {
Reader reader = new FileReader("");
} <caret>catch (IndexOutOfBoundsException | FileNotFoundException e) {
}
}
}