Ollama4j
A Java library (wrapper/binding) for Ollama server.
Loading...
Searching...
No Matches
ToolInvocationException.java
Go to the documentation of this file.
1package io.github.ollama4j.exceptions;
2
3public class ToolInvocationException extends Exception {
4
5 public ToolInvocationException(String s, Exception e) {
6 super(s, e);
7 }
8}