Changed ClientRejectedException hierarchy

This commit is contained in:
nathan 2020-08-15 13:13:40 +02:00
parent f891e76478
commit 1b796971d3

View File

@ -1,6 +1,6 @@
package dorkbox.network.aeron.server
package dorkbox.network.aeron.client
/**
* The server rejected this client when it tried to connect.
*/
class ClientRejectedException(message: String, cause: Throwable? = null) : ServerException(message, cause)
class ClientRejectedException(message: String, cause: Throwable? = null) : ClientException(message, cause)