この考えが実現できるかどうかわかりません。もしそうでなければ、私はいくつかの選択肢に感謝します。例外を処理してログに記録する例外
System.Exceptionクラスと同様に、いつでもエラーを捕捉できるカスタム例外クラスを作成する必要があります。しかし、例外をキャッチすると、エラーを記録することができます。
このコードは私の実装ですが、例外の種類はありません。
public class CustomException : Exception
{
public CustomException()
{
//Log error
}
public CustomException(string message)
: base(message)
{
//Log error
}
public CustomException(string message, Exception inner)
: base(message, inner)
{
//Log error
}
}
ありがとうございます。
私は 'Exception'オブジェクトを' try-catch'ブロックと混同していると思います。 –