自製exception,你要建立三個建構式,分別是無參,一個string,及一個string加上一個exception,這是最基本的

public class program
{
    static void Main()
    {
        try
        {
            throw new MyOwnException("test");
        }
        catch(MyOwnException ex)
        {
            Console.WriteLine(ex.Message);
        }
     }    
}

public class MyOwnException : Exception
{
    public MyOwnException() : base()
    {

    }

    public MyOwnException(string message) : base(message)
    {

    }

    public MyOwnException(string message, Exception innerException) : base(message, innerException)
    {

    }
}

arrow
arrow
    創作者介紹
    創作者 痞客興 的頭像
    痞客興

    痞客興的部落格

    痞客興 發表在 痞客邦 留言(0) 人氣()