BusinessException.cs 303 B

1234567891011121314
  1. using System;
  2. namespace RevokeMsgPatcher
  3. {
  4. class BusinessException : ApplicationException
  5. {
  6. public string ErrorCode { get; protected set; }
  7. public BusinessException(string errcode, string message) : base(message)
  8. {
  9. ErrorCode = errcode;
  10. }
  11. }
  12. }