8f521a8002508ba0cca9f6a75576686565babb73
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / dlux / loader / impl / src / main / java / org / opendaylight / dlux / loader / exception / DluxLoaderException.java
1 /*
2  * Copyright (c) 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.dlux.loader.exception;
10
11 public class DluxLoaderException extends Exception {
12
13     public DluxLoaderException(final String message) {
14         super(message);
15     }
16
17     public DluxLoaderException(final String message, final Throwable throwable) {
18         super(message, throwable);
19     }
20 }