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

io.quarkiverse.langchain4j.runtime.aiservice.GuardrailException Maven / Gradle / Ivy

There is a newer version: 0.21.0
Show newest version
package io.quarkiverse.langchain4j.runtime.aiservice;

/**
 * Exception thrown when a input or output guardrail validation fails.
 * 

* This exception is not intended to be used in guardrail implementation. */ public class GuardrailException extends RuntimeException { public GuardrailException(String message) { super(message); } public GuardrailException(String message, Throwable cause) { super(message, cause); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy