summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/fs4/BufferTooSmallException.java
blob: f169ce7f9614de990feed31a220f9421e1fb5596 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 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 the buffer used to hold a packet is too small
 *
 * @author  <a href="mailto:borud@yahoo-inc.com">Bjorn Borud</a>
 */
@SuppressWarnings("serial")
public class BufferTooSmallException extends Exception {
    public BufferTooSmallException (String message) {
        super(message);
    }
}