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.
13 lines
645 B
13 lines
645 B
#####################################
|
|
# RobotRDPActive Exceptions class
|
|
#####################################
|
|
class SessionWindowNotExistError(Exception): pass #Error when Window not exists
|
|
class SessionWindowNotResponsibleError(Exception): pass # Error when Window not responding to delete
|
|
class RUNExistError(Exception): pass # Error when RUN window not identified
|
|
class CMDResponsibleError(Exception): pass # Error when command is not return
|
|
class HostNoGUIError(Exception): pass # Orchestrator session has no GUI
|
|
#try:
|
|
# raise SessionWindowNotResponsibleError("Test")
|
|
#except SessionWindowNotResponsibleError as e:
|
|
# print("Catched")
|