package org.jboss.resteasy.spi;
import javax.ws.rs.core.Response;
@Deprecated
public class ForbiddenException extends LoggableFailure
{
public ForbiddenException()
{
super(403);
}
public ForbiddenException(final String s)
{
super(s, 403);
}
public ForbiddenException(final String s, final Response response)
{
super(s, response);
}
public ForbiddenException(final String s, final Throwable throwable, final Response response)
{
super(s, throwable, response);
}
public ForbiddenException(final String s, final Throwable throwable)
{
super(s, throwable, 403);
}
public ForbiddenException(final Throwable throwable)
{
super(throwable, 403);
}
public ForbiddenException(final Throwable throwable, final Response response)
{
super(throwable, response);
}
}