Source code for rigidity.errors



class RigidityException(Exception):
    pass


[docs]class DropRow(RigidityException): ''' When a rule raises this error, the row that is being processed is dropped from the output. ''' pass