5fea7c3ae6
* remove some try catches choking all exceptions * rename ExceptionExtension to ReportAsWarning, show full stack instead of just message * dotnet-migrate try catch clean-up * fix migration test failures
12 lines
No EOL
183 B
C#
12 lines
No EOL
183 B
C#
using System;
|
|
|
|
namespace AppThrowing
|
|
{
|
|
class MyException : Exception
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
throw new MyException();
|
|
}
|
|
}
|
|
} |