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