终端一体化运控平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 line
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. }