blob: 083eead2e73e09fb3be449d8a55ec63ee60f38ed [file] [log] [blame]
Brian O'Connorc67f9fa2014-08-07 18:17:46 -07001package net.floodlightcontroller.core;
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 * @author gregor
10 *
11 */
12public class SwitchDriverSubHandshakeCompleted
13 extends SwitchDriverSubHandshakeException {
14 private static final long serialVersionUID = -8817822245846375995L;
15
16 public SwitchDriverSubHandshakeCompleted(OFMessage m) {
17 super("Sub-Handshake is already complete but received message " +
18 m.getType());
19 }
20}