first commit

This commit is contained in:
2026-02-16 17:41:03 +00:00
commit 3f15490a0d
1055 changed files with 194272 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
class RobotError(Exception):
def __init__(self, message, status=None):
if status is not None:
message = "{0} ({1})".format(message, status)
super(RobotError, self).__init__(message)
self.status = status
class ManualReboot(Exception):
pass
class ConnectError(Exception):
pass
class WebRobotError(RobotError):
pass