faa981c6ae71349aff8efb8434fbccf9e122de71
[openflowplugin.git] / openflowplugin / src / main / java / org / opendaylight / openflowplugin / openflow / md / core / session / RolePushException.java
1 /**
2  * Copyright (c) 2014 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.openflow.md.core.session;
9
10 /**
11  * covers role pushing issues
12  */
13 public class RolePushException extends Exception {
14
15     private static final long serialVersionUID = -615991366447313972L;
16
17     /**
18      * default ctor
19      *
20      * @param message
21      */
22     public RolePushException(String message) {
23         super(message);
24     }
25
26     /**
27      * @param message
28      * @param cause
29      */
30     public RolePushException(String message, Throwable cause) {
31         super(message, cause);
32     }
33 }