1 """Error handling class""" 2 3 -class ControlSystemsError(Exception): 4 """ControlSystemsError class 5 6 A simple error handling class, extends the Exception class, from 7 the Python standard library. 8 9 """ 10 11 pass 12