blob: 1c6dac94c28485b929c644ba0ea23356886c864b [file] [log] [blame]
alshabib6171f182014-09-02 19:00:32 -07001package org.onlab.onos.of.controller.driver;
alshabib1f44e8e2014-08-14 15:19:57 -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}