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

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

package com.lithic.api.errors

import com.google.common.collect.ListMultimap

class NotFoundException
constructor(
    headers: ListMultimap,
    private val error: LithicError,
) : LithicServiceException(headers, "${error}") {
    override fun statusCode(): Int = 404
    fun error(): LithicError = error
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy