MarginaliaSearch/code/common/service/java/nu/marginalia/util/ServiceHomeNotConfiguredException.java
Viktor Lofgren 46423612e3 (refac) Merge service-discovery and service modules
Also adds a few tests to the server/client code.
2024-03-03 10:49:23 +01:00

8 lines
198 B
Java

package nu.marginalia.util;
public class ServiceHomeNotConfiguredException extends RuntimeException {
public ServiceHomeNotConfiguredException(String message) {
super(message);
}
}