blob: 0f34b0ed18c82c760db156fa1c28d07a8f09dc55 [file] [log] [blame]
alshabib6171f182014-09-02 19:00:32 -07001package org.onlab.onos.of.controller.driver;
alshabib1f44e8e2014-08-14 15:19:57 -07002
3/**
4 * Thrown when a switch driver's sub-handshake has not been started but an
5 * operation requiring the sub-handshake has been attempted.
6 *
7 */
8public class SwitchDriverSubHandshakeNotStarted extends
9 SwitchDriverSubHandshakeException {
10 private static final long serialVersionUID = -5491845708752443501L;
11
12 public SwitchDriverSubHandshakeNotStarted() {
13 super();
14 }
15}