6 lines
139 B
Python
6 lines
139 B
Python
|
|
from enum import Enum
|
||
|
|
|
||
|
|
|
||
|
|
class SeismicAnchorValidationError(Enum):
|
||
|
|
TooFewAnchors = 'There are too few anchors in one or more subarrays'
|