Bug - 1008 Define checked exceptions 37/8837/2
authorMartin Bobak <mbobak@cisco.com>
Tue, 8 Jul 2014 13:57:17 +0000 (15:57 +0200)
committermichal rehak <mirehak@cisco.com>
Mon, 14 Jul 2014 10:02:11 +0000 (10:02 +0000)
- introduced ConnectionException

Change-Id: I9b5c8594ecc1a4e3134a1643f961970f88a76eda
Signed-off-by: Martin Bobak <mbobak@cisco.com>
openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/ConnectionException.java [new file with mode: 0644]

diff --git a/openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/ConnectionException.java b/openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/ConnectionException.java
new file mode 100644 (file)
index 0000000..e8e8023
--- /dev/null
@@ -0,0 +1,19 @@
+/**
+ * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.openflowplugin;
+
+/**
+ * Created by Martin Bobak mbobak@cisco.com on 7/8/14.
+ */
+public class ConnectionException extends Exception {
+
+    public ConnectionException(String message){
+        super(message);
+    }
+
+}