blob: cfa526905a1223ee879da988da5b84874c5ef4f6 [file] [log] [blame]
tom9c94c5b2014-09-17 13:14:42 -07001package org.onlab.onos.openflow.controller.driver;
tom7ef8ff92014-09-17 13:08:06 -07002
3import org.projectfloodlight.openflow.protocol.OFMessage;
4
5
6/**
7 * Indicates that a message was passed to a switch driver's subhandshake
8 * handling code but the driver has already completed the sub-handshake.
9 *
10 */
11public class SwitchDriverSubHandshakeCompleted
12 extends SwitchDriverSubHandshakeException {
13 private static final long serialVersionUID = -8817822245846375995L;
14
15 public SwitchDriverSubHandshakeCompleted(OFMessage m) {
16 super("Sub-Handshake is already complete but received message "
17 + m.getType());
18 }
19}