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)