From c5e0ebc41764dd44b931158a4413561efc765a41 Mon Sep 17 00:00:00 2001 From: Abdourahamane Boinaidi Date: Tue, 15 Oct 2024 09:58:34 +0200 Subject: [PATCH] refactor: Update NetworkException kDoc --- .../network/exceptions/NetworkException.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/STNetwork/src/commonMain/kotlin/com/infomaniak/multiplatform_swisstransfer/network/exceptions/NetworkException.kt b/STNetwork/src/commonMain/kotlin/com/infomaniak/multiplatform_swisstransfer/network/exceptions/NetworkException.kt index 31254a1d..f894dc9e 100644 --- a/STNetwork/src/commonMain/kotlin/com/infomaniak/multiplatform_swisstransfer/network/exceptions/NetworkException.kt +++ b/STNetwork/src/commonMain/kotlin/com/infomaniak/multiplatform_swisstransfer/network/exceptions/NetworkException.kt @@ -22,9 +22,6 @@ import io.ktor.utils.io.errors.IOException /** * Thrown when a network-related error occurs, such as connectivity issues or timeouts. * - * This exception is used to represent errors that occur during network operations, - * typically indicating problems with the connection, DNS resolution, or other network failures. - * * @param message A detailed message describing the network error. */ class NetworkException(message: String) : IOException(message)