例外は表示されません。Exception
クラスを拡張してメソッドをオーバーライドし、toString
それを呼び出しました。条件に応じて hahah を表示する必要がありますが、何も表示されません..エラーもありません。
class Excp extends Exception {
public String toString() {
return "hahah";
}
}
public class exc {
boolean a = false;
void hey() throws Excp {
if (a)
throw new Excp();
}
public static void main(String... s) {
try {
new exc().hey();
} catch (Excp e) {
System.out.println(e);
}
}
}