6c7c54fb7f9094e6c10e138c43dc104912e9bfd0
[controller.git] / opendaylight / md-sal / sal-common-api / src / main / java / org / opendaylight / controller / md / sal / common / api / data / OptimisticLockFailedException.java
1 /*
2  * Copyright (c) 2014, 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.md.sal.common.api.data;
10
11 import org.opendaylight.yangtools.yang.common.RpcError.ErrorType;
12 import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
13
14 /**
15 * Failure of asynchronous transaction commit caused by failure
16 * of optimistic locking.
17 *
18 * <p>
19 * This exception is raised and returned when transaction commit
20 * failed, because other transaction finished successfully
21 * and modified same data as failed transaction.
22 *
23 * <p>
24 *  Clients may recover from this error condition by
25 *  retrieving current state and submitting new updated
26 *  transaction.
27 *
28 */
29 public class OptimisticLockFailedException extends TransactionCommitFailedException {
30
31     private static final long serialVersionUID = 1L;
32
33     public OptimisticLockFailedException(final String message, final Throwable cause) {
34         super(message, cause, RpcResultBuilder.newError(ErrorType.APPLICATION, "resource-denied",
35                                                         message, null, null, cause));
36     }
37
38     public OptimisticLockFailedException(final String message) {
39         this(message, null);
40     }
41 }