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.
 
 
 
 
 

15 lines
426 B

using System;
namespace ChangkeTec.Utils.CustomException
{
public class EfNotFindDateException : Exception
{
public EfNotFindDateException()
: base("未找到对应数据")
{ }
public EfNotFindDateException(string str)
: base(str)
{ }
public EfNotFindDateException(string format, params object[] args) : base(string.Format(format, args)) { }
}
}