blob: 785685fb6b5cc393aaaf476130c9ae24ba3a9d25 [file] [log] [blame]
Brian O'Connorabafb502014-12-02 22:26:20 -08001package org.onosproject.store.service;
Madan Jampani08822c42014-11-04 17:17:46 -08002
Yuta HIGUCHI657626e2014-11-04 20:54:58 -08003
Madan Jampani08822c42014-11-04 17:17:46 -08004/**
5 * Exception thrown when an operation (read or write) is requested for
6 * a table that does not exist.
7 */
8@SuppressWarnings("serial")
9public class NoSuchTableException extends DatabaseException {
Brian O'Connorabafb502014-12-02 22:26:20 -080010}