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