网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

自定义异常

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");
                }
            }
        }
    }

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

自定义异常

创新互联专注于金乡企业网站建设,响应式网站设计,成都做商城网站。金乡网站建设公司,为金乡等地区提供建站服务。全流程按需网站制作,专业设计,全程项目跟踪,创新互联专业和态度为您提供的服务


网页名称:自定义异常
URL标题:http://bjjierui.cn/article/ipceoh.html

其他资讯