先列个大体框架吧
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)
        
{
 
        }

    }

}

posted on 2007-08-18 10:26  ATP.NET  阅读(143)  评论(0编辑  收藏  举报