blob: 5b29edf2e085a8480adce73387be1f1c54b0807e (
plain)
1
2
3
4
5
6
|
/**
* The packet that is currently being read is not valid.
*
* @param reason The reason for which the packet is invalid.
*/
class InvalidMessageException(val reason: String) : Exception("Invalid packet: $reason")
|