All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lithic.api.errors.UnexpectedStatusCodeException.kt Maven / Gradle / Ivy

package com.lithic.api.errors

import com.google.common.collect.ListMultimap

class UnexpectedStatusCodeException
constructor(
    private val statusCode: Int,
    headers: ListMultimap,
    private val body: String
) : LithicServiceException(headers, "Unexpected status code: ${statusCode}") {
    override fun statusCode(): Int = statusCode
    fun body() = body
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy