From 1b796971d314b9c429a59e816a5f3179a1b07ca1 Mon Sep 17 00:00:00 2001 From: nathan Date: Sat, 15 Aug 2020 13:13:40 +0200 Subject: [PATCH] Changed ClientRejectedException hierarchy --- .../aeron/{server => client}/ClientRejectedException.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename src/dorkbox/network/aeron/{server => client}/ClientRejectedException.kt (62%) diff --git a/src/dorkbox/network/aeron/server/ClientRejectedException.kt b/src/dorkbox/network/aeron/client/ClientRejectedException.kt similarity index 62% rename from src/dorkbox/network/aeron/server/ClientRejectedException.kt rename to src/dorkbox/network/aeron/client/ClientRejectedException.kt index 79385947..49cc8036 100644 --- a/src/dorkbox/network/aeron/server/ClientRejectedException.kt +++ b/src/dorkbox/network/aeron/client/ClientRejectedException.kt @@ -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)