リストが空の場合にスローする例外について、次の疑問があります
public class XYZ implements Runnable {
private List<File> contractFileList;
@Override
public void run() {
contractFileList = some method that will return the list;
//now i want to check if returned contractFile is empty or not , if yes then raise the exception
if (contractFileList.isEmpty()) {
// throw new ?????
}
}
}
このコードをバッチ内で実行しています。バッチの実行を停止する例外をスローしたいと考えています。