码迷,mamicode.com
首页 > 其他好文 > 详细

自定义异常

时间:2014-11-12 02:10:31      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:c#自定义异常   applicationexception   

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

/*
 * ***************************************
 * 定义了一个循环,定义了一个自定义异常类
 * 输出(如果输入1):
 * 1
 * 内finally
 * 第一级错误:自定义错误1     第二级错误:再一次出错
 * 外finally
 * ***************************************
 */
namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            while (true)
            {
                string str = Console.ReadLine();
                Console.WriteLine(str);
                try
                {
                    try
                    {
                        if (str == "1")
                        {
                            throw new CustomException();
                        }
                    }
                    catch (CustomException ex)
                    {
                        throw new CustomException("再一次出错",ex);
                    }
                    finally
                    {
                        Console.WriteLine("内finally");
                    }
                }
                catch (CustomException ex)
                {
                    Console.WriteLine("第一级错误:" + ex.InnerException.Message + "\t第二级错误:" + ex.Message);
                }
                catch (Exception ex)
                {
                    Console.WriteLine(ex.Message);
                }
                finally
                {
                    Console.WriteLine("外finally");
                }
            }
        }
    }

    /// <summary>
    /// 自定义异常类
    /// </summary>
    class CustomException : ApplicationException
    {
        public CustomException(string msg = "自定义错误1")
            : base(msg)
        {
        }
        public CustomException(string msg, Exception innerException)
            : base(msg, innerException)
        {
        }
    }
}

bubuko.com,布布扣

本文出自 “程序猿的家--Hunter” 博客,请务必保留此出处http://962410314.blog.51cto.com/7563109/1575536

自定义异常

标签:c#自定义异常   applicationexception   

原文地址:http://962410314.blog.51cto.com/7563109/1575536

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!