ErpException.cs 306 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace NXWMS.Service.ERP
  5. {
  6. public class ErpException : Exception
  7. {
  8. public int ErrCode;
  9. public ErpException(int errCode, string Msg) : base(Msg)
  10. {
  11. this.ErrCode = errCode;
  12. }
  13. }
  14. }