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

io.smallrye.stork.api.NoSuchServiceRegistrarException 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;

/**
 * Exception thrown when Stork does not have a {@link ServiceRegistrar} associated with a given name.
 */
public class NoSuchServiceRegistrarException extends RuntimeException {

    /**
     * Creates a new instance of NoSuchServiceRegistrarException.
     *
     * @param registrarName the registrar name
     */
    public NoSuchServiceRegistrarException(String registrarName) {
        super("No service registrar for name " + registrarName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy