From ed8b3c474fc33ff66832c1b5bdeec8083a5919e2 Mon Sep 17 00:00:00 2001 From: Martin Bobak Date: Tue, 8 Jul 2014 15:57:17 +0200 Subject: [PATCH] Bug - 1008 Define checked exceptions - introduced ConnectionException Change-Id: I9b5c8594ecc1a4e3134a1643f961970f88a76eda Signed-off-by: Martin Bobak --- .../openflowplugin/ConnectionException.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/ConnectionException.java 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 index 0000000000..e8e8023b05 --- /dev/null +++ b/openflowplugin-api/src/main/java/org/opendaylight/openflowplugin/ConnectionException.java @@ -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); + } + +} -- 2.36.6