blob: 8a631a0aa7c584ca67a18fee3520886593198e1a [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.
Madan Jampani37c2e702014-11-04 18:11:10 -08005 * Scenarios that can cause this exception:
6 * <ul>
Madan Jampani08822c42014-11-04 17:17:46 -08007 * <li>An operation that attempts to write a new value iff the current value is equal
8 * to some specified value.</li>
9 * <li>An operation that attempts to write a new value iff the current version
10 * matches a specified value</li>
11 * </ul>
12 */
13@SuppressWarnings("serial")
14public class PreconditionFailedException extends DatabaseException {
Madan Jampani37c2e702014-11-04 18:11:10 -080015}