Skip to content

Commit

Permalink
chore: Make OkHttpClientHelper the first class in the file
Browse files Browse the repository at this point in the history
`OkHttpClientHelper` should go first as the file is named after it.

Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Oct 7, 2023
1 parent 0f01456 commit e40b8ed
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions utils/ort/src/main/kotlin/OkHttpClientHelper.kt
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@ import org.ossreviewtoolkit.utils.common.withoutPrefix

typealias BuilderConfiguration = OkHttpClient.Builder.() -> Unit

/**
* An HTTP-specific download error that enriches an [IOException] with an additional HTTP error code.
*/
class HttpDownloadError(val code: Int, message: String) : IOException("$message (HTTP code $code)")

/**
* A helper class to manage OkHttp instances backed by distinct cache directories.
*/
Expand All @@ -81,6 +76,11 @@ object OkHttpClientHelper {
} ?: okHttpClient
}

/**
* An HTTP-specific download error that enriches an [IOException] with an additional HTTP error code.
*/
class HttpDownloadError(val code: Int, message: String) : IOException("$message (HTTP code $code)")

private val logger = loggerOf(MethodHandles.lookup().lookupClass())

private const val CACHE_DIRECTORY = "cache/http"
Expand Down

0 comments on commit e40b8ed

Please sign in to comment.