20f381ef8d095a22f98936640435b94a61f5c237
[controller.git] / third-party / openflowj_netty / src / main / java / org / openflow / protocol / factory / MessageParseException.java
1 /**
2  *    Copyright 2013, Big Switch Networks, Inc.
3  *
4  *    Licensed under the Apache License, Version 2.0 (the "License"); you may
5  *    not use this file except in compliance with the License. You may obtain
6  *    a copy of the License at
7  *
8  *         http://www.apache.org/licenses/LICENSE-2.0
9  *
10  *    Unless required by applicable law or agreed to in writing, software
11  *    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12  *    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13  *    License for the specific language governing permissions and limitations
14  *    under the License.
15  **/
16
17 package org.openflow.protocol.factory;
18
19 /**
20  * Exception thrown when an openflow message fails to parse properly
21  */
22 public class MessageParseException extends Exception {
23     /**
24      * 
25      */
26     private static final long serialVersionUID = -75893812926304726L;
27
28     public MessageParseException() {
29         super();
30     }
31
32     public MessageParseException(String message, Throwable cause) {
33         super(message, cause);
34         this.setStackTrace(cause.getStackTrace());
35     }
36
37     public MessageParseException(String message) {
38         super(message);
39     }
40
41     public MessageParseException(Throwable cause) {
42         super(cause);
43         this.setStackTrace(cause.getStackTrace());
44     }
45 }