C# 自定义异常

2021-02-17 23:16

阅读:1355

标签:ace   log   post   style   on()   body   c#   hit   继承   

// 自定义异常,继承自Exception
 public class MyException : Exception
 {
        public override string Message
        {
            get { return "开始日期或者结束日期格式不正确"; }
         }
}
 
在需要用的时候抛出
throw new MyException();

C# 自定义异常

标签:ace   log   post   style   on()   body   c#   hit   继承   

原文地址:https://www.cnblogs.com/-NickWang/p/8364863.html


评论


亲,登录后才可以留言!