自製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)
{
}
}
文章標籤
全站熱搜
留言列表