summaryrefslogtreecommitdiffstats
path: root/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/EndpointIOException.java
blob: f9279f429ff1394db1384b33fd8360e797c25e1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.client.core.communication;

import com.yahoo.vespa.http.client.config.Endpoint;

import java.io.IOException;

/**
 * Class for throwing exception from endpoint.
 *
 * @author dybis
*/
public class EndpointIOException extends IOException {

    private final Endpoint endpoint;
    private static final long serialVersionUID = 29335813211L;

    public EndpointIOException(Endpoint endpoint, String message, Throwable cause) {
        super(message, cause);
        this.endpoint = endpoint;
    }

    /** Returns the endpoint, or the failure occurred before  this was assigned to a unique endpoint */
    public Endpoint getEndpoint() { return endpoint; }

}