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

org.jboss.resteasy.client.jaxrs.spi.ClientConfigException Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha4
Show newest version
package org.jboss.resteasy.client.jaxrs.spi;

/**
 * General client configuration exception
 * @author [email protected]
 */
public class ClientConfigException extends RuntimeException {
    public ClientConfigException() {
        super();
    }

    public ClientConfigException(final String message) {
        super(message);
    }

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

    public ClientConfigException(final Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy