blob: 8261fbd82b04662d50fafe323ae01d1ef65aac6d [file] [log] [blame]
Madan Jampani64689552015-02-17 10:00:27 -08001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
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")
23public class TransactionException extends RuntimeException {
24 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 /**
44 * Transaction failure due to optimistic concurrency failure.
45 */
46 public static class OptimisticConcurrencyFailure extends TransactionException {
47 }
48}