blob: ba792e57f0ac30d59d3a68f0efabd317549396c3 [file] [log] [blame]
tom9ccd7812014-08-25 22:43:19 -07001package org.onlab.onos.of.controller.impl.internal;
tom0eb04ca2014-08-25 14:34:51 -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}