blob: 202803276002f9228ad24b1fa825c42acf973c4d [file] [log] [blame]
Madan Jampani25461112015-02-17 14:17:29 -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
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 {
39 }
40
41 /**
Madan Jampanibff6d8f2015-03-31 16:53:47 -070042 * ConsistentMap update conflicts with an in flight transaction.
43 */
44 public static class ConcurrentModification extends ConsistentMapException {
Madan Jampanic7f49f92015-12-10 11:35:06 -080045 public ConcurrentModification() {
46 super();
47 }
48
49 public ConcurrentModification(String message) {
50 super(message);
51 }
Madan Jampanibff6d8f2015-03-31 16:53:47 -070052 }
53
54 /**
Madan Jampani09342702015-02-05 23:32:40 -080055 * ConsistentMap operation interrupted.
56 */
57 public static class Interrupted extends ConsistentMapException {
58 }
59}