Consider:
class MyCleanUpError(Exception):
    """Error raised during teardown."""
    pass
versus:
class MyCleanUpError(Exception):
    """Error raised during teardown."""
I've seen the class declared with and with out the pass statement. Which is appropriate? 
 
     
    