blob: 1600854395ee1666fa37b4e60cc6419d4836861c [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package net.onrc.onos.of.ctl.internal;
2
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}