Example usage for org.springframework.web.client HttpClientErrorException subclass-usage

List of usage examples for org.springframework.web.client HttpClientErrorException subclass-usage

Introduction

In this page you can find the example usage for org.springframework.web.client HttpClientErrorException subclass-usage.

Usage

From source file org.cloudfoundry.client.lib.CloudFoundryException.java

@SuppressWarnings("serial")
public class CloudFoundryException extends Exception {

    private String description;

    private int cloudFoundryErrorCode = -1;

From source file org.syncope.client.validation.SyncopeClientCompositeErrorException.java

public class SyncopeClientCompositeErrorException extends HttpClientErrorException {

    private Set<SyncopeClientException> exceptions;

    public SyncopeClientCompositeErrorException(HttpStatus statusCode) {
        super(statusCode);