summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/prelude/fastsearch/TimeoutException.java
blob: 8d46b7ae44117aa6ab0521d4860e79f41b1597bc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.prelude.fastsearch;

import java.io.IOException;

/**
 * Thrown on communication timeouts
 *
 * @author bratseth
 */
@SuppressWarnings("serial")
public class TimeoutException extends IOException {

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