Clustering support for existing design (FRM,IM,SM) - add retry mechanisms to avoid...
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / role / RoleChangeException.java
1 /**
2  * Copyright (c) 2015, 2016 Dell.  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.openflowplugin.openflow.md.core.role;
10
11
12 public class RoleChangeException extends Exception {
13     private static final long serialVersionUID = -615991366447313972L;
14
15     /**
16      * default ctor
17      *
18      * @param message exception message
19      */
20     public RoleChangeException(String message) {
21         super(message);
22     }
23
24     /**
25      * @param message exception message
26      * @param cause exception cause
27      */
28     public RoleChangeException(String message, Throwable cause) {
29         super(message, cause);
30     }
31 }