天津投入产出系统后端

19 lines
353 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Common.Exceptions
{
public class ParameterCannotNullException : Exception
{
public override string Message
{
get
{
return "参数或返回值不能为null";
}
}
}
}