using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication11
{
class Program
{
static void Main(string[] args)
{
throw new MY("test");
}
}
class MY : System.Exception
{
public MY(string A)
: base(A)
{
}
}
}
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication11
{
class Program
{
static void Main(string[] args)
{
throw new MY("test");
}
}
class MY : System.Exception
{
public MY(string A)
: base(A)
{
}
}
}