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);
}
}