summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/fs4/ChannelTimeoutException.java
blob: 791a9f668de4d777973f50897035c98f52982667 (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
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// -*- mode: java; folded-file: t; c-basic-offset: 4 -*-
//

package com.yahoo.fs4;


/**
 * Signal that a timeout occurred in the Channel2 communiction
 *
 * @author  <a href="mailto:borud@yahoo-inc.com">Bjorn Borud</a>
 *
 */
@SuppressWarnings("serial")
public class ChannelTimeoutException extends Exception
{
    public ChannelTimeoutException (String msg) {
        super(msg);
    }

    public ChannelTimeoutException () {
    }
}