| 48 | |
| 49 | |
| 50 | class IdsXmlValidationError(Exception): |
| 51 | def __init__(self, xml_error: XMLSchemaValidationError, message: str): |
| 52 | self.xml_error = xml_error |
| 53 | super().__init__(message) |
| 54 | |
| 55 | |
| 56 | def open(filepath: str, validate: bool = False) -> Ids: |
no outgoing calls
no test coverage detected