summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/fs4/mplex/InvalidChannelException.java
blob: 6176d0696455940bed4010f7a499f230c6c2028d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2017 Yahoo Holdings. 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.mplex;

/**
 * @author <a href="mailto:borud@yahoo-inc.com">Bj\u00f8rn Borud</a>
 */
@SuppressWarnings("serial")
public class InvalidChannelException extends Exception
{
    public InvalidChannelException (String message) {
        super(message);
    }
}