// 自定义异常,继承自Exception
public class MyException : Exception
{
public override string Message
{
get { return "开始日期或者结束日期格式不正确"; }
}
}
在需要用的时候抛出
throw new MyException();
标签:ace log post style on() body c# hit 继承
标签:ace log post style on() body c# hit 继承
原文地址:https://www.cnblogs.com/-NickWang/p/8364863.html