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";
            }
        }
    }
}