blob: dc8759339807557cc1329626d9426409ec19dc06 [file] [log] [blame]
Madan Jampani64689552015-02-17 10:00:27 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Madan Jampani64689552015-02-17 10:00:27 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.store.service;
18
19/**
20 * Top level exception for Transaction failures.
21 */
22@SuppressWarnings("serial")
Madan Jampani80984052015-07-23 13:11:36 -070023public class TransactionException extends StorageException {
Madan Jampani64689552015-02-17 10:00:27 -080024 public TransactionException() {
25 }
26
27 public TransactionException(Throwable t) {
28 super(t);
29 }
30
31 /**
32 * Transaction timeout.
33 */
34 public static class Timeout extends TransactionException {
35 }
36
37 /**
38 * Transaction interrupted.
39 */
40 public static class Interrupted extends TransactionException {
41 }
42
43 /**
Madan Jampanibff6d8f2015-03-31 16:53:47 -070044 * Transaction failure due to optimistic concurrency violation.
Madan Jampani64689552015-02-17 10:00:27 -080045 */
46 public static class OptimisticConcurrencyFailure extends TransactionException {
47 }
Madan Jampanibff6d8f2015-03-31 16:53:47 -070048
49 /**
50 * Transaction failure due to a conflicting transaction in progress.
51 */
52 public static class ConcurrentModification extends TransactionException {
53 }
Madan Jampani64689552015-02-17 10:00:27 -080054}