|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace DeiNiu.Utils
|
|
{
|
|
public class MyException :Exception
|
|
{
|
|
private string _extrMsg = string.Empty;
|
|
public string ExtrMsg
|
|
{
|
|
get
|
|
{
|
|
return _extrMsg;
|
|
}
|
|
set
|
|
{
|
|
_extrMsg ="<br/>" + value;
|
|
}
|
|
}
|
|
}
|
|
}
|