using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace WebAPI.Exceptions { /// /// EXCEL异常报错类 /// public class ExcelException : Exception { public ExcelException(string message) : base(message) { } } }