RosterOnError Exception

class rosteron.exceptions.RosterOnError

RosterOnError exceptions are never raised directly.

This exception class exists solely as a base class for all other RosterOn-related exception classes, to enable “catch-all” error-handling when the specifics of the failure (beyond the fact that it is RosterOn-related) are unimportant:

try:
    ...
except RosterOnError:
    print('There was a RosterOn problem; continuing')