终端一体化运控平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

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