summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/fs4/BufferTooSmallException.java
diff options
context:
space:
mode:
Diffstat (limited to 'container-search/src/main/java/com/yahoo/fs4/BufferTooSmallException.java')
-rw-r--r--container-search/src/main/java/com/yahoo/fs4/BufferTooSmallException.java17
1 files changed, 0 insertions, 17 deletions
diff --git a/container-search/src/main/java/com/yahoo/fs4/BufferTooSmallException.java b/container-search/src/main/java/com/yahoo/fs4/BufferTooSmallException.java
deleted file mode 100644
index 38f312e6c8d..00000000000
--- a/container-search/src/main/java/com/yahoo/fs4/BufferTooSmallException.java
+++ /dev/null
@@ -1,17 +0,0 @@
-// 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;
-/**
- * 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);
- }
-}