blob: f16fc47e548140e0de5d47d3392f670353e448a5 [file] [log] [blame]
Madan Jampani08822c42014-11-04 17:17:46 -08001package org.onlab.onos.store.service;
2
3/**
4 * Exception that indicates a precondition failure.
5 * <ul>Scenarios that can cause this exception:
6 * <li>An operation that attempts to write a new value iff the current value is equal
7 * to some specified value.</li>
8 * <li>An operation that attempts to write a new value iff the current version
9 * matches a specified value</li>
10 * </ul>
11 */
12@SuppressWarnings("serial")
13public class PreconditionFailedException extends DatabaseException {
14}