commonMain.com.fleeksoft.ksoup.UncheckedIOException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ksoup-jvm Show documentation
Show all versions of ksoup-jvm Show documentation
Ksoup is a Kotlin Multiplatform library for working with HTML and XML, and offers an easy-to-use API for URL fetching, data parsing, extraction, and manipulation using DOM and CSS selectors.
The newest version!
package com.fleeksoft.ksoup
import okio.IOException
public class UncheckedIOException : Exception {
public constructor(cause: IOException?) : super(cause)
public constructor(message: String?) : super(IOException(message))
public fun ioException(): Throwable? {
return cause
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy