blob: 2ba4dee82b7d3b59b4d8577ae1145ca251b60a46 [file] [log] [blame]
Madan Jampani393e0f02015-02-12 07:35:39 +05301package org.onosproject.store.service;
Madan Jampani09342702015-02-05 23:32:40 -08002
3/**
4 * Top level exception for ConsistentMap failures.
5 */
6@SuppressWarnings("serial")
7public class ConsistentMapException extends RuntimeException {
8 public ConsistentMapException() {
9 }
10
11 public ConsistentMapException(Throwable t) {
12 super(t);
13 }
14
15 /**
16 * ConsistentMap operation timeout.
17 */
18 public static class Timeout extends ConsistentMapException {
19 }
20
21 /**
22 * ConsistentMap operation interrupted.
23 */
24 public static class Interrupted extends ConsistentMapException {
25 }
26}