c402ceeb97cd8491a22b62f12f97bb5e1c56e7ad
[netvirt.git] / elanmanager / impl / src / main / java / org / opendaylight / netvirt / elan / ElanException.java
1 /*
2  * Copyright (c) 2016 Red Hat, 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 package org.opendaylight.netvirt.elan;
9
10 public class ElanException extends Exception {
11     private static final long serialVersionUID = -2491313989449541864L;
12
13     public ElanException(String message, Throwable cause) {
14         super(message, cause);
15     }
16
17     public ElanException(String message) {
18         super(message);
19     }
20
21 }