终端一体化运控平台
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

14 řádky
243 B

  1. using System;
  2. namespace Lebai.SDK.Exceptions
  3. {
  4. public class RobotException : Exception
  5. {
  6. public bool CanRetry { get; }
  7. public RobotException(string message, bool canRetry = false) : base(message)
  8. {
  9. CanRetry = canRetry;
  10. }
  11. }
  12. }