cc.unitmesh.store.ElasticsearchRequestFailedException.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of store-elasticsearch Show documentation
Show all versions of store-elasticsearch Show documentation
Chocolate Factory is a cutting-edge LLM toolkit designed to empower you in creating your very own AI assistant.
package cc.unitmesh.store
internal class ElasticsearchRequestFailedException : RuntimeException {
constructor() : super()
constructor(message: String) : super(message)
constructor(message: String, cause: Throwable) : super(message, cause)
}