7 lines
165 B
Python
7 lines
165 B
Python
|
class ServiceExit(Exception):
|
||
|
"""
|
||
|
Custom exception which is used to trigger the clean exit
|
||
|
of all running threads and the main program.
|
||
|
"""
|
||
|
pass
|