Fixed exception heirarchy

This commit is contained in:
nathan 2020-08-11 23:30:56 +02:00
parent 5d696d37e2
commit 94f623716b
2 changed files with 6 additions and 6 deletions

View File

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

View File

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