aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/main/java/com/yahoo/document/restapi/RestApiException.java
blob: 29843801bee61b5ed502502889286f0c7be8d1b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.document.restapi;

/**
 * Exceptions for Rest API
 *
 * @author dybis
 */
public class RestApiException extends Exception {

    private final Response response;

    public RestApiException(Response response) {
        this.response = response;
    }

    public Response getResponse() {
        return response;
    }

}