私はCプログラマーであり、Androidアプリケーションを1つ開発しているため、最近Javaを学んでいます。現在、私は状況にあります。以下はその1つです。
public Class ClassA{
public ClassA();
public void MyMethod(){
try{
//Some code here which can throw exceptions
}
catch(ExceptionType1 Excp1){
//Here I want to show one alert Dialog box for the exception occured for the user.
//but I am not able to show dialog in this context. So I want to propagate it
//to the caller of this method.
}
catch(ExceptionType2 Excp2){
//Here I want to show one alert Dialog box for the exception occured for the user.
//but I am not able to show dialog in this context. So I want to propagate it
//to the caller of this method.
}
}
}
ここで、別のクラスの別の場所でメソッドMyMethod()の呼び出しを使用したいと思います。誰かがMyMethod()の呼び出し元に例外を伝播して、呼び出し元メソッドのダイアログボックスに例外を表示できるようにする方法のコードスニペットを提供してくれる場合。
申し訳ありませんが、この質問をする方法があまり明確で奇妙でない場合。