Add seed code for sdnr app based on ONF Centennial
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / dlux / loader / impl / src / main / java / org / opendaylight / dlux / loader / exception / DluxLoaderException.java
diff --git a/sdnr/wireless-transport/code-Carbon-SR1/apps/dlux/loader/impl/src/main/java/org/opendaylight/dlux/loader/exception/DluxLoaderException.java b/sdnr/wireless-transport/code-Carbon-SR1/apps/dlux/loader/impl/src/main/java/org/opendaylight/dlux/loader/exception/DluxLoaderException.java
new file mode 100644 (file)
index 0000000..8f521a8
--- /dev/null
@@ -0,0 +1,20 @@
+/*
+ * Copyright (c) 2015 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.dlux.loader.exception;
+
+public class DluxLoaderException extends Exception {
+
+    public DluxLoaderException(final String message) {
+        super(message);
+    }
+
+    public DluxLoaderException(final String message, final Throwable throwable) {
+        super(message, throwable);
+    }
+}