isar 1.16.12__py3-none-any.whl → 1.16.13__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.16.12.dist-info → isar-1.16.13.dist-info}/METADATA +1 -1
- {isar-1.16.12.dist-info → isar-1.16.13.dist-info}/RECORD +6 -6
- robot_interface/models/exceptions/robot_exceptions.py +12 -0
- {isar-1.16.12.dist-info → isar-1.16.13.dist-info}/LICENSE +0 -0
- {isar-1.16.12.dist-info → isar-1.16.13.dist-info}/WHEEL +0 -0
- {isar-1.16.12.dist-info → isar-1.16.13.dist-info}/top_level.txt +0 -0
|
@@ -89,7 +89,7 @@ robot_interface/robot_interface.py,sha256=i2qw1V9mLO-ljtS7LiRliQ7XNmmBJIwD4NG8mD
|
|
|
89
89
|
robot_interface/test_robot_interface.py,sha256=FV1urn7SbsMyWBIcTKjsBwAG4IsXeZ6pLHE0mA9EGGs,692
|
|
90
90
|
robot_interface/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
91
|
robot_interface/models/exceptions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
|
-
robot_interface/models/exceptions/robot_exceptions.py,sha256=
|
|
92
|
+
robot_interface/models/exceptions/robot_exceptions.py,sha256=olW9I6VrAsNPZ4c_4Yr9Uor_0vES84wjqWesqHqSFag,8535
|
|
93
93
|
robot_interface/models/initialize/__init__.py,sha256=rz5neEDr59GDbzzI_FF0DId-C-I-50l113P-h-C_QBY,48
|
|
94
94
|
robot_interface/models/initialize/initialize_params.py,sha256=2eG5Aq5bDKU6tVkaUMAoc46GERBgyaKkqv6yLupdRLc,164
|
|
95
95
|
robot_interface/models/inspection/__init__.py,sha256=14wfuj4XZazrigKD7fL98khFKz-eckIpEgPcYRj40Kg,227
|
|
@@ -107,8 +107,8 @@ robot_interface/telemetry/payloads.py,sha256=9EshERifjD1u8CwjSiV3NGuj0KuXnwblQNB
|
|
|
107
107
|
robot_interface/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
108
|
robot_interface/utilities/json_service.py,sha256=nU2Q_3P9Fq9hs6F_wtUjWtHfl_g1Siy-yDhXXSKwHwg,1018
|
|
109
109
|
robot_interface/utilities/uuid_string_factory.py,sha256=_NQIbBQ56w0qqO0MUDP6aPpHbxW7ATRhK8HnQiBSLkc,76
|
|
110
|
-
isar-1.16.
|
|
111
|
-
isar-1.16.
|
|
112
|
-
isar-1.16.
|
|
113
|
-
isar-1.16.
|
|
114
|
-
isar-1.16.
|
|
110
|
+
isar-1.16.13.dist-info/LICENSE,sha256=3fc2-ebLwHWwzfQbulGNRdcNob3SBQeCfEVUDYxsuqw,14058
|
|
111
|
+
isar-1.16.13.dist-info/METADATA,sha256=45SWfF2_NCDmeNMJ-yRm6tz2PtlMCjMs7ju-eSW8TIg,14752
|
|
112
|
+
isar-1.16.13.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
113
|
+
isar-1.16.13.dist-info/top_level.txt,sha256=UwIML2RtuQKCyJJkatcSnyp6-ldDjboB9k9JgKipO-U,21
|
|
114
|
+
isar-1.16.13.dist-info/RECORD,,
|
|
@@ -19,6 +19,7 @@ class ErrorReason(str, Enum):
|
|
|
19
19
|
RobotTransformException: str = "robot_transform_exception"
|
|
20
20
|
RobotUnknownErrorException: str = "robot_unknown_error_exception"
|
|
21
21
|
RobotDisconnectedException: str = "robot_disconnected_exception"
|
|
22
|
+
RobotMissionNotSupportedException: str = "robot_mission_not_supported_exception"
|
|
22
23
|
|
|
23
24
|
|
|
24
25
|
@dataclass
|
|
@@ -219,3 +220,14 @@ class RobotDisconnectedException(RobotException):
|
|
|
219
220
|
)
|
|
220
221
|
|
|
221
222
|
pass
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
# An exception which should be thrown by the robot package if the robot is given a mission type it cannot run, such as a localisation mission
|
|
226
|
+
class RobotMissionNotSupportedException(RobotException):
|
|
227
|
+
def __init__(self, error_description: str) -> None:
|
|
228
|
+
super().__init__(
|
|
229
|
+
error_reason=ErrorReason.RobotMissionNotSupportedException,
|
|
230
|
+
error_description=error_description,
|
|
231
|
+
)
|
|
232
|
+
|
|
233
|
+
pass
|
|
File without changes
|
|
File without changes
|
|
File without changes
|