Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

2011-05-30から1日間の記事一覧

SystemExceptionとApplicationExceptionは無用の長物

System.Exceptionから派生している例外クラスに、System.SystemExceptionとSystem.ApplicationExceptionがあります。MSの当初の構想では以下のような例外処理が実装可能になるはずでした。 try { } catch (System.SystemException ex) { // CLRからスローさ…