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

com.microkubes.tools.gateway.ServiceRegistryException Maven / Gradle / Ivy

There is a newer version: 0.2.0.RELEASE
Show newest version
package com.microkubes.tools.gateway;

/**
 * Represents an error that occured during the service registration process.
 */
public class ServiceRegistryException extends RuntimeException {
    public ServiceRegistryException() {
    }

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

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

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

    protected ServiceRegistryException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy