org.kiwiproject.registry.exception.RegistrationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-discovery-client Show documentation
Show all versions of service-discovery-client Show documentation
Abstract service discovery API for service registration and lookup
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);
}
}