天津投入产出系统后端
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.
 
 
 
 
 
 

18 lines
339 B

using System;
namespace Common.Exceptions
{
public class MessageSendFailedException : Exception
{
/// <summary>
/// 异常消息
/// </summary>
public override string Message
{
get
{
return "消息发送失败!";
}
}
}
}