From 2c89e591657ae4a3b27b9e5b8a84040e61c52a75 Mon Sep 17 00:00:00 2001
From: Nelson Tavares de Sousa <stu103017@mail.uni-kiel.de>
Date: Wed, 26 Aug 2015 14:24:47 +0200
Subject: [PATCH] removed unused exception

---
 .../pipe/CouldNotFindPipeImplException.java   | 26 -------------------
 1 file changed, 26 deletions(-)
 delete mode 100644 src/main/java/teetime/framework/pipe/CouldNotFindPipeImplException.java

diff --git a/src/main/java/teetime/framework/pipe/CouldNotFindPipeImplException.java b/src/main/java/teetime/framework/pipe/CouldNotFindPipeImplException.java
deleted file mode 100644
index bb7a5058..00000000
--- a/src/main/java/teetime/framework/pipe/CouldNotFindPipeImplException.java
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * Copyright (C) 2015 Christian Wulf, Nelson Tavares de Sousa (http://christianwulf.github.io/teetime)
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *         http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package teetime.framework.pipe;
-
-public final class CouldNotFindPipeImplException extends RuntimeException {
-
-	private static final long serialVersionUID = 5242260988104493402L;
-
-	public CouldNotFindPipeImplException(final String key) {
-		super("Could not find any pipe implementation that conforms to the key: " + key);
-	}
-
-}
-- 
GitLab