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

dev.langchain4j.exception.IllegalConfigurationException Maven / Gradle / Ivy

Go to download

Java implementation of LangChain: Integrate your Java application with countless AI tools and services smoothly

There is a newer version: 1.0.0-alpha1
Show newest version
package dev.langchain4j.exception;

import static java.lang.String.format;

public class IllegalConfigurationException extends RuntimeException {

    public IllegalConfigurationException(String message) {
        super(message);
    }

    public static IllegalConfigurationException illegalConfiguration(String message) {
        return new IllegalConfigurationException(message);
    }

    public static IllegalConfigurationException illegalConfiguration(String format, Object... args) {
        return new IllegalConfigurationException(format(format, args));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy