package org.jboss.resteasy.client.exception;
public class ResteasyAuthenticationException extends ResteasyProtocolException
{
private static final long serialVersionUID = -5711578608757689465L;
public ResteasyAuthenticationException()
{
}
public ResteasyAuthenticationException(final String message)
{
super(message);
}
public ResteasyAuthenticationException(final String message, final Throwable cause)
{
super(message, cause);
}
public ResteasyAuthenticationException(final Throwable cause)
{
super(cause);
}
}