(self, data_length, decoder_state)
| 69 | Signifies that a packet has taken too long to be received |
| 70 | """ |
| 71 | def __init__(self, data_length, decoder_state): |
| 72 | self.data_length = data_length |
| 73 | self.decoder_state = decoder_state |
| 74 | self.value = { |
| 75 | 'DATA LENGTH': self.data_length, |
| 76 | 'DECODER STATE': self.decoder_state |
| 77 | } |
| 78 | |
| 79 | |
| 80 | class BufferOverflowError(Exception): |
nothing calls this directly
no outgoing calls
no test coverage detected