12 lines
184 B
C#
12 lines
184 B
C#
using System;
|
|
|
|
namespace AppThrowing
|
|
{
|
|
class MyException : Exception
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
throw new MyException();
|
|
}
|
|
}
|
|
}
|