I am working on a Windows Forms project and a Class Library project in Visual Studio 2012.
If you have 1 or more fatal runtime exceptions which .NET exception would you use as its base? I know ApplicationException
is used for non-fatal application exception. But I dont see which one .NET recommends for fatal application exception.
Or would you define you own base exception for fatal runtime exceptions? If yes then from which .NET exception you would derive it?
Thanks