Total Complexity | 0 |
Total Lines | 6 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | """A commonly-used exception type for use in matching.""" |
||
2 | |||
3 | |||
4 | class MatchFailure(BaseException): |
||
5 | """An exception that signals a failure in ADT matching.""" |
||
6 |