例:
独自の例外タイプを定義することはできますか?
コード ビハインドまたは BL または DA レイヤーに独自のカスタム メソッドがあるとします。
public void my_first_method()
{
// some custom code execution..
//might throw some errors..
}
//so.. if am not wrong..
//can i have something in my event handler like..
try
{
my_first_method();
my_second_method();
my_third_method();
}
catch(my_first_methodException fex)
{
}
catch(my_second_methodException sex)
{
}
catch(my_third_methodException tex)
{
}
catch(Exception ex)
{
//if doesn't belongs to above 3 exception come here..
}
私はこれが可能かどうかを調べようとしています。お知らせ下さい。前もって感謝します。