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