blob: 4cfc13b618d765ba309a83b74ebdfe6ea67e28e4 [file] [log] [blame]
Madan Jampani778f7ad2014-11-05 22:46:15 -08001package org.onlab.onos.store.service.impl;
2
3import org.onlab.onos.store.service.DatabaseException;
4
5/**
6 * Exception that indicates a problem with the state machine snapshotting.
7 */
8@SuppressWarnings("serial")
9public class SnapshotException extends DatabaseException {
10 public SnapshotException(Throwable t) {
11 super(t);
12 }
13}