23 lines
368 B
C#
23 lines
368 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|