AipFileException.cs 380 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace AipGateway.AIP
  7. {
  8. public class AipFileException : Exception
  9. {
  10. public int ErrorCode { get; }
  11. public AipFileException(int errorCode, string message) : base(message)
  12. {
  13. ErrorCode = errorCode;
  14. }
  15. }
  16. }