C#的throw异常处理语句

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        public class UserEmployeeException : Exception
        {
            private string errorinfoSK = string.Empty;
            public UserEmployeeException()
            {
            }
            public UserEmployeeException(string message)
                : base(message)
            {
                errorinfoSK = message;
            }

            public UserEmployeeException(string message, Exception inner)
                : base(message, inner)
            {
                errorinfoSK = message;
                inner = null;
            }
        }
        public static void Main()
        {
            try
            {
                throw new UserEmployeeException("error Info of use ");
            }
            catch (UserEmployeeException ey)
            {
                Console.WriteLine(ey.Message);
                Console.WriteLine("输出结果为:");
                Console.WriteLine(ey.InnerException);
                Console.Read();
            }
        }
    }
}
/*
 error Info of use
输出结果为:


 */

throw语句用于发出在程序执行期间出现反常情况(异常)的信号。throw语句通常与try-catch或try-finally语句一起使用。可以使用throw语句显式引发异常(这里引发自定义异常)。创建用户自定义异常,好的编码方法是以“Exception”作为用户自定义异常类名的结尾。

示例 throw语句的使用

本示例通过Exception派生了一个新异常类UserEmployeeException,该类中定义了3个构造函数,每个构造函数使用不同的参数,然后再抛出自定义异常。程序代码如下。

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
namespace ClsUserExecption
{
class Program
{
public class UserEmployeeException: Exception
{
private string errorinfo=string.Empty;
public UserEmployeeException()
{
}
public UserEmployeeException (string message) : base(message)
{
errorinfo = message;
}

public UserEmployeeException (string message, Exception
inner):base(message,inner)
{
errorinfo = message;
inner = null;
}
}
public static void Main()
{
try
{
throw new UserEmployeeException("error Info of use ");
}
catch (UserEmployeeException ey)
{
Console.WriteLine("输出结果为:");
Console.WriteLine(ey.Message,ey.InnerException);
Console.Read();
}
}
}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值