aboutsummaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/UnknownClientException.java
blob: 513b9355f3e9fdd122c4c5ed8b54d7d3ff0ab4ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.http.server;

/**
 * @author Einar M R Rosenvinge
 */
public class UnknownClientException extends RuntimeException {

    public UnknownClientException(String message) {
        super(message);
    }

}