org.dmfs.httpessentials.responsehandlers.FailResponseHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-client-basics Show documentation
Show all versions of http-client-basics Show documentation
Basic implementations of http-client-essentials that are frequently used.
/*
* Copyright 2017 dmfs GmbH
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.dmfs.httpessentials.responsehandlers;
import org.dmfs.httpessentials.HttpStatus;
import org.dmfs.httpessentials.client.HttpResponse;
import org.dmfs.httpessentials.client.HttpResponseHandler;
import org.dmfs.httpessentials.exceptions.ClientErrorException;
import org.dmfs.httpessentials.exceptions.NotFoundException;
import org.dmfs.httpessentials.exceptions.ProtocolError;
import org.dmfs.httpessentials.exceptions.ProtocolException;
import org.dmfs.httpessentials.exceptions.ServerErrorException;
import org.dmfs.httpessentials.exceptions.UnauthorizedException;
import org.dmfs.httpessentials.exceptions.UnexpectedStatusException;
import java.io.IOException;
/**
* An default response handler that doesn't handle the response but throws the most appropriate Exception, based on the response status code. Use {@link
* #getInstance()} to get an instance.
*
* @param
* The type of the expected response.
*
* @author Marten Gajda
*/
public final class FailResponseHandler implements HttpResponseHandler
{
private final static HttpResponseHandler> INSTANCE = new FailResponseHandler
© 2015 - 2025 Weber Informatics LLC | Privacy Policy