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

commonMain.com.xebia.functional.openai.errors.ResponseSerializerError.kt Maven / Gradle / Ivy

There is a newer version: 0.0.5-alpha.118
Show newest version
package com.xebia.functional.openai.errors

data class ResponseSerializerError(
  override val message: String,
  override val cause: Throwable?,
  val info: ResponseErrorInfo,
) : Exception(message, cause)

data class ResponseErrorInfo(
  val requestUrl: String,
  val requestMethod: String,
  val requestBody: String,
  val responseStatus: Int,
  val responseHeaders: String,
  val responseBody: String
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy