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

org.kiwiproject.registry.exception.RegistrationException Maven / Gradle / Ivy

package org.kiwiproject.registry.exception;

/**
 * Exception used to indicate a failure to register with the service registry.
 */
public class RegistrationException extends RuntimeException {
    public RegistrationException() {
        super();
    }

    public RegistrationException(String message) {
        super(message);
    }

    public RegistrationException(String message, Throwable cause) {
        super(message, cause);
    }

    public RegistrationException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy