C#之抛异常
Posted talentzemin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#之抛异常相关的知识,希望对你有一定的参考价值。
using System;
namespace Demo
class Program
static void Main(string[] args)
try
BLLLayer();
catch (Exception ex)
Console.WriteLine(ex.StackTrace);
Console.WriteLine("===================================");
Console.WriteLine(ex.ToString());
Console.ReadKey();
static void BLLLayer()
try
DAOLayer();
catch (Exception ex)
//throw; //可溯源到DAO
//throw ex; //可溯源终点就是这里
//throw new Exception("BLL层异常"); //可溯源终点就是这里,抛出新的异常,吞并原来的异常
//throw new Exception("BLL层异常", ex); //可溯源终点就是这里,抛出新的异常,带着原来的异常
static void DAOLayer()
try
throw new Exception("DAO层异常");
catch
throw;
以上是关于C#之抛异常的主要内容,如果未能解决你的问题,请参考以下文章