com.onloupe.core.server.WebChannelConnectFailureException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core functionality of Loupe.
package com.onloupe.core.server;
import org.apache.http.StatusLine;
/**
* An exception thrown to indicate a connection failure on the web channel.
*/
public class WebChannelConnectFailureException extends WebChannelException {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 1L;
/**
* Create a new connection failure exception.
*
* @param message the message
* @param responseStatus the response status
* @param requestUri the request uri
*/
public WebChannelConnectFailureException(String message, StatusLine responseStatus, java.net.URI requestUri) {
super(message, responseStatus, requestUri);
}
/**
* Create a new connection failure exception.
*
* @param message the message
*/
public WebChannelConnectFailureException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy