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

cc.unitmesh.store.ElasticsearchRequestFailedException.kt Maven / Gradle / Ivy

Go to download

Chocolate Factory is a cutting-edge LLM toolkit designed to empower you in creating your very own AI assistant.

There is a newer version: 1.0.0
Show newest version
package cc.unitmesh.store

internal class ElasticsearchRequestFailedException : RuntimeException {
    constructor() : super()
    constructor(message: String) : super(message)
    constructor(message: String, cause: Throwable) : super(message, cause)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy