InvalidIOCasesException¶
- class InvalidIOCasesException[source]¶
The exception raised when an IO test contained invalid data.
- invalid_cases: Sequence[Sequence[str | int]]¶
The list of invalid cases. Each case is a two tuple of an int and a string. The int is the index of the case, and the string the error for that case. A single index might be present more than once.
- add_note()¶
Exception.add_note(note) – add a note to the exception
- args¶
- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.