using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model.Exceptions { /// /// 生产班组报错异常 /// internal class Gy_GroupException : Exception { public Gy_GroupException(string message) : base(message) { } } }