(self, value)
| 3 | Super class for Eeprom Errors |
| 4 | """ |
| 5 | def __init__(self, value): |
| 6 | self.value = value |
| 7 | |
| 8 | class NonTerminatedStringError(EepromError): |
| 9 | """NonTerminatedStringErrors are raised when a string is parsed that does not have a null-terminator on it |
nothing calls this directly
no outgoing calls
no test coverage detected