using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAPI.Exceptions { /// /// 空数据异常 /// public class EmptyException : Exception { public EmptyException(string message): base(message) { } } }