You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Exception class for attempting to invoke a method which requries the thread not be running, but isn't"""
21
23
message: str='Thread is still running, unable to invoke method. You can wait for the thread to terminate with `Thread.join()` or check with `Thread.is_alive()`'
22
24
23
-
classThreadNotRunningError(ThreadErrorBase):
25
+
classThreadNotRunningError(ErrorBase):
24
26
"""Exception class for attempting to invoke a method which requires the thread to be running, but isn't"""
25
27
message: str='Thread is not running, unable to invoke method. Have you ran `Thread.start()`?'
26
28
27
-
classThreadNotInitializedError(ThreadErrorBase):
29
+
classThreadNotInitializedError(ErrorBase):
28
30
"""Exception class for attempting to invoke a method which requires the thread to be initialized, but isn't"""
29
31
message: str='Thread is not initialized, unable to invoke method.'
30
32
31
-
classHookRuntimeError(ThreadErrorBase):
33
+
classHookRuntimeError(ErrorBase):
32
34
"""Exception class for hook runtime errors"""
33
35
message: str='Encountered runtime errors in hooks'
0 commit comments