summaryrefslogtreecommitdiffstats
path: root/vespa-http-client/src/main/java/com/yahoo/vespa/http/client/core/communication/EndpointIOException.java
blob: 1bb4d2ffeb00530f40bad171356c1fbe213f9b26 (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
// Copyright 2016 Yahoo Inc. 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 dybdahl
*/
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;
    }

    public Endpoint getEndpoint() {
        return endpoint;
    }
}