blob: b2191c3286079e717ea7dcb168286bde365e53ae [file] [log] [blame]
Brian O'Connorabafb502014-12-02 22:26:20 -08001package org.onosproject.store.service.impl;
Madan Jampani778f7ad2014-11-05 22:46:15 -08002
Brian O'Connorabafb502014-12-02 22:26:20 -08003import org.onosproject.store.service.DatabaseException;
Madan Jampani778f7ad2014-11-05 22:46:15 -08004
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}