blob: 51f3e499a4001dfd74fba70cfc1c622d542eb924 [file] [log] [blame]
Madan Jampani25461112015-02-17 14:17:29 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Madan Jampani25461112015-02-17 14:17:29 -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
Madan Jampani393e0f02015-02-12 07:35:39 +053017package org.onosproject.store.service;
Madan Jampani09342702015-02-05 23:32:40 -080018
19/**
20 * Top level exception for ConsistentMap failures.
21 */
22@SuppressWarnings("serial")
Madan Jampanib5d72d52015-04-03 16:53:50 -070023public class ConsistentMapException extends StorageException {
Madan Jampani09342702015-02-05 23:32:40 -080024 public ConsistentMapException() {
25 }
26
Madan Jampanic7f49f92015-12-10 11:35:06 -080027 public ConsistentMapException(String message) {
28 super(message);
29 }
30
Madan Jampani09342702015-02-05 23:32:40 -080031 public ConsistentMapException(Throwable t) {
32 super(t);
33 }
34
35 /**
36 * ConsistentMap operation timeout.
37 */
38 public static class Timeout extends ConsistentMapException {
Madan Jampani42755872016-09-06 19:31:06 -070039 public Timeout() {
40 super();
41 }
42
43 public Timeout(String message) {
44 super(message);
45 }
Madan Jampani09342702015-02-05 23:32:40 -080046 }
47
48 /**
Madan Jampanibff6d8f2015-03-31 16:53:47 -070049 * ConsistentMap update conflicts with an in flight transaction.
50 */
51 public static class ConcurrentModification extends ConsistentMapException {
Madan Jampanic7f49f92015-12-10 11:35:06 -080052 public ConcurrentModification() {
53 super();
54 }
55
56 public ConcurrentModification(String message) {
57 super(message);
58 }
Madan Jampanibff6d8f2015-03-31 16:53:47 -070059 }
60
61 /**
Madan Jampani09342702015-02-05 23:32:40 -080062 * ConsistentMap operation interrupted.
63 */
64 public static class Interrupted extends ConsistentMapException {
65 }
66}