Merge "BUG-4283 experimenter msg support - registration part"
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / role / RoleChangeException.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 package org.opendaylight.openflowplugin.impl.role;
9
10 /**
11  * Created by kramesha on 8/21/15.
12  */
13 public class RoleChangeException extends Exception {
14     private static final long serialVersionUID = -615991366447313972L;
15
16     /**
17      * default ctor
18      *
19      * @param message
20      */
21     public RoleChangeException(String message) {
22         super(message);
23     }
24
25     /**
26      * @param message
27      * @param cause
28      */
29     public RoleChangeException(String message, Throwable cause) {
30         super(message, cause);
31     }
32 }