Passed
Push — master ( bcf14c...4a1f1b )
by Max
57s
created

structured_data._match.match_failure   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 6
rs 10
c 0
b 0
f 0
wmc 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