isar 1.21.0__py3-none-any.whl → 1.22.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of isar might be problematic. Click here for more details.
- {isar-1.21.0.dist-info → isar-1.22.0.dist-info}/METADATA +1 -1
- {isar-1.21.0.dist-info → isar-1.22.0.dist-info}/RECORD +7 -7
- {isar-1.21.0.dist-info → isar-1.22.0.dist-info}/WHEEL +1 -1
- robot_interface/models/exceptions/robot_exceptions.py +14 -0
- {isar-1.21.0.dist-info → isar-1.22.0.dist-info}/LICENSE +0 -0
- {isar-1.21.0.dist-info → isar-1.22.0.dist-info}/entry_points.txt +0 -0
- {isar-1.21.0.dist-info → isar-1.22.0.dist-info}/top_level.txt +0 -0
|
@@ -90,7 +90,7 @@ robot_interface/robot_interface.py,sha256=pY1Wuka0fTP-kCmkEndAcFytkS73cEE2zIHv-v
|
|
|
90
90
|
robot_interface/test_robot_interface.py,sha256=FV1urn7SbsMyWBIcTKjsBwAG4IsXeZ6pLHE0mA9EGGs,692
|
|
91
91
|
robot_interface/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
92
|
robot_interface/models/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
93
|
-
robot_interface/models/exceptions/robot_exceptions.py,sha256=
|
|
93
|
+
robot_interface/models/exceptions/robot_exceptions.py,sha256=DNlecQm2m4ld5mLLFQl1EkQ4b9XgX9H7g-b5c1EuUf4,9549
|
|
94
94
|
robot_interface/models/initialize/__init__.py,sha256=rz5neEDr59GDbzzI_FF0DId-C-I-50l113P-h-C_QBY,48
|
|
95
95
|
robot_interface/models/initialize/initialize_params.py,sha256=2eG5Aq5bDKU6tVkaUMAoc46GERBgyaKkqv6yLupdRLc,164
|
|
96
96
|
robot_interface/models/inspection/__init__.py,sha256=14wfuj4XZazrigKD7fL98khFKz-eckIpEgPcYRj40Kg,227
|
|
@@ -108,9 +108,9 @@ robot_interface/telemetry/payloads.py,sha256=eMK7mjZPsLY6yvu7AK-OcdvkeUpChzDrySD
|
|
|
108
108
|
robot_interface/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
109
109
|
robot_interface/utilities/json_service.py,sha256=nU2Q_3P9Fq9hs6F_wtUjWtHfl_g1Siy-yDhXXSKwHwg,1018
|
|
110
110
|
robot_interface/utilities/uuid_string_factory.py,sha256=_NQIbBQ56w0qqO0MUDP6aPpHbxW7ATRhK8HnQiBSLkc,76
|
|
111
|
-
isar-1.
|
|
112
|
-
isar-1.
|
|
113
|
-
isar-1.
|
|
114
|
-
isar-1.
|
|
115
|
-
isar-1.
|
|
116
|
-
isar-1.
|
|
111
|
+
isar-1.22.0.dist-info/LICENSE,sha256=3fc2-ebLwHWwzfQbulGNRdcNob3SBQeCfEVUDYxsuqw,14058
|
|
112
|
+
isar-1.22.0.dist-info/METADATA,sha256=Dx34ZNsSo26My-as75yW1uaJ0Y9ptXrTNXZLfygxmrU,30574
|
|
113
|
+
isar-1.22.0.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
|
114
|
+
isar-1.22.0.dist-info/entry_points.txt,sha256=TFam7uNNw7J0iiDYzsH2gfG0u1eV1wh3JTw_HkhgKLk,49
|
|
115
|
+
isar-1.22.0.dist-info/top_level.txt,sha256=UwIML2RtuQKCyJJkatcSnyp6-ldDjboB9k9JgKipO-U,21
|
|
116
|
+
isar-1.22.0.dist-info/RECORD,,
|
|
@@ -21,6 +21,9 @@ class ErrorReason(str, Enum):
|
|
|
21
21
|
RobotUnknownErrorException: str = "robot_unknown_error_exception"
|
|
22
22
|
RobotDisconnectedException: str = "robot_disconnected_exception"
|
|
23
23
|
RobotMissionNotSupportedException: str = "robot_mission_not_supported_exception"
|
|
24
|
+
RobotMissionMissingStartPoseException: str = (
|
|
25
|
+
"robot_mission_missing_start_pose_exception"
|
|
26
|
+
)
|
|
24
27
|
|
|
25
28
|
|
|
26
29
|
@dataclass
|
|
@@ -244,3 +247,14 @@ class RobotMissionNotSupportedException(RobotException):
|
|
|
244
247
|
)
|
|
245
248
|
|
|
246
249
|
pass
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
# An exception which should be thrown by the robot package if the mission is missing start pose and it needed it
|
|
253
|
+
class RobotMissionMissingStartPoseException(RobotException):
|
|
254
|
+
def __init__(self, error_description: str) -> None:
|
|
255
|
+
super().__init__(
|
|
256
|
+
error_reason=ErrorReason.RobotMissionMissingStartPoseException,
|
|
257
|
+
error_description=error_description,
|
|
258
|
+
)
|
|
259
|
+
|
|
260
|
+
pass
|
|
File without changes
|
|
File without changes
|
|
File without changes
|