using System; using System.Collections.Generic; using System.Text; namespace NXWMS.Service.ERP { public class ErpException : Exception { public int ErrCode; public ErpException(int errCode, string Msg) : base(Msg) { this.ErrCode = errCode; } } }