summaryrefslogtreecommitdiffstats
path: root/container-search/src/main/java/com/yahoo/fs4/BufferTooSmallException.java
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2019-09-18 07:03:13 +0200
committerGitHub <noreply@github.com>2019-09-18 07:03:13 +0200
commit89a1b3ae32347c00e1177576668385ebfe3a6a68 (patch)
tree2856305bc733d52b7e6a26e0a36afacef8209ccb /container-search/src/main/java/com/yahoo/fs4/BufferTooSmallException.java
parentf6b49bf9f9e98b5778d9c8856e128a1fcdb5e017 (diff)
Revert "Revert "Balder/no more fs4 dispatching from fastsearcher""
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);
- }
-}