summaryrefslogtreecommitdiffstats
path: root/vespaclient-container-plugin/src/main/java/com/yahoo/vespa/http/server/UnknownClientException.java
blob: ce605a82dbcec79b6ebcffaa9c047e6a5b1503fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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.server;

/**
 * @author <a href="mailto:einarmr@yahoo-inc.com">Einar M R Rosenvinge</a>
 * @since 5.5.0
 */
public class UnknownClientException extends RuntimeException {

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

}