终端一体化运控平台
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 rivejä
309 B

  1. using Lebai.SDK.Dtos;
  2. namespace Lebai.SDK.Exceptions
  3. {
  4. public class RobotStatusException : RobotException
  5. {
  6. private RobotStatus RobotStatus { get; }
  7. public RobotStatusException(RobotStatus robotStatus) : base(EnumExtension.GetEnumDescription(robotStatus))
  8. {
  9. RobotStatus = robotStatus;
  10. }
  11. }
  12. }