継承するクラスがSystem.Exception
try catch ブロックで機能しないのはなぜですか?
次の抜粋はcatchブロックを起動しません
try
{
int a = 3;
int b = 0;
int c = a/b;
}
catch (CustomEx er)
{
Console.Write(er.Message);
}
public class CustomEx:Exception
{
}
継承するクラスがSystem.Exception
try catch ブロックで機能しないのはなぜですか?
次の抜粋はcatchブロックを起動しません
try
{
int a = 3;
int b = 0;
int c = a/b;
}
catch (CustomEx er)
{
Console.Write(er.Message);
}
public class CustomEx:Exception
{
}