私は次のような設定をしています...
public class MyClass {
Exception e = null;
try {
Game.runItNow();
} catch (Exception e) {
this.e = e;
}
if (this.e == null) {
showError();
}
}
public class Game {
public static void runItNow() throws IOException {
try {
HttpManager.getData()
} catch(IOException e) {
// here, e = null
throw e;
}
}
}
public class HttpManager {
public static String getData() throws IOException {
String someData = "The fox is brown";
String someWord = "fox";
if (someData.contains(someWord)) {
throw new IOException();
}
return someData;
}
}
問題は、IO例外をキャッチしたときですe == null
.. 脳のおならがあるかどうかはわかりませんが、かなり混乱しています. なぜe == null
ですか?私はそれの新しいインスタンスを投げています。