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

io.smallrye.stork.api.NoAcceptableServiceInstanceFoundException Maven / Gradle / Ivy

Go to download

Main Stork API classes. You are likely to need `smallrye-stork-core` and not this module.

The newest version!
package io.smallrye.stork.api;

/**
 * Thrown by {@link LoadBalancer} when all available services are not acceptable for some, arbitrary, reason
 */
public class NoAcceptableServiceInstanceFoundException extends NoServiceInstanceFoundException {

    /**
     * Creates a new NoAcceptableServiceInstanceFoundException.
     *
     * @param message the message
     */
    public NoAcceptableServiceInstanceFoundException(String message) {
        super(message);
    }

    /**
     * Creates a new NoAcceptableServiceInstanceFoundException.
     *
     * @param message the message
     * @param cause the cause
     */
    public NoAcceptableServiceInstanceFoundException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy