summaryrefslogtreecommitdiff
path: root/src/main/kotlin/except/InvalidMessageException.kt
blob: 02a3cc40ba8e67ad43bec0964343db0cfd3f948c (plain)
1
2
3
4
5
6
7
8
package except

/**
 * 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")