org.jboss.resteasy.client.exception.ResteasyNoHttpResponseException Maven / Gradle / Ivy
package org.jboss.resteasy.client.exception;
/**
* @author Ron Sigal
* @version $Revision: 1.1 $
*
* Copyright Jul 28, 2012
*/
public class ResteasyNoHttpResponseException extends ResteasyIOException
{
private static final long serialVersionUID = -5711578608757689465L;
public ResteasyNoHttpResponseException()
{
}
public ResteasyNoHttpResponseException(final String message)
{
super(message);
}
public ResteasyNoHttpResponseException(final String message, final Throwable cause)
{
super(message, cause);
}
public ResteasyNoHttpResponseException(final Throwable cause)
{
super(cause);
}
}