You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
426 B
20 lines
426 B
4 years ago
|
|
||
|
namespace Common.Exceptions
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 功能:数据源未定义异常
|
||
|
/// 作者:王昊昇
|
||
|
/// 时间:2012.2.8
|
||
|
/// </summary>
|
||
|
public class NonDataAccessException : System.Exception
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 获取异常消息
|
||
|
/// </summary>
|
||
|
public override string Message
|
||
|
{
|
||
|
get { return "数据源未定义!"; }
|
||
|
}
|
||
|
}
|
||
|
}
|