blob: 30c4e917ce9eb9d4e97ad5f9dbe80f67e8fffb5c [file] [log] [blame]
Thomas Vachuska781d18b2014-10-27 10:31:25 -07001/*
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07002 * Copyright 2014 Open Networking Laboratory
tom7ef8ff92014-09-17 13:08:06 -07003 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
tom7ef8ff92014-09-17 13:08:06 -07007 *
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07008 * 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,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Thomas Vachuska781d18b2014-10-27 10:31:25 -070015 */
tom7ef8ff92014-09-17 13:08:06 -070016
Brian O'Connorabafb502014-12-02 22:26:20 -080017package org.onosproject.openflow.controller.driver;
tom7ef8ff92014-09-17 13:08:06 -070018
19/**
20 * This exception indicates an error or unexpected message during
21 * message handling. E.g., if an OFMessage is received that is illegal or
22 * unexpected given the current handshake state.
23 *
24 * We don't allow wrapping other exception in a switch state exception. We
25 * only log the SwitchStateExceptions message so the causing exceptions
26 * stack trace is generally not available.
27 *
28 */
29public class SwitchStateException extends Exception {
30
31 private static final long serialVersionUID = 9153954512470002631L;
32
33 public SwitchStateException() {
34 super();
35 }
36
37 public SwitchStateException(String arg0, Throwable arg1) {
38 super(arg0, arg1);
39 }
40
41 public SwitchStateException(String arg0) {
42 super(arg0);
43 }
44
45 public SwitchStateException(Throwable arg0) {
46 super(arg0);
47 }
48
49}