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