
com.lithic.api.errors.LithicServiceException.kt Maven / Gradle / Ivy
package com.lithic.api.errors
import com.google.common.collect.ListMultimap
abstract class LithicServiceException
constructor(
private val headers: ListMultimap,
message: String? = null,
cause: Throwable? = null
) : LithicException(message, cause) {
abstract fun statusCode(): Int
fun headers(): ListMultimap = headers
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy