blob: 1468d1b9d9d7ea25f07322e1c524b7294a995c5f [file] [log] [blame]
Madan Jampani08822c42014-11-04 17:17:46 -08001package org.onlab.onos.store.service;
2
3/**
4 * Base exception type for database failures.
5 */
6@SuppressWarnings("serial")
7public class DatabaseException extends RuntimeException {
8 public DatabaseException(String message, Throwable t) {
9 super(message, t);
10 }
11
12 public DatabaseException(String message) {
13 super(message);
14 }
15
16 public DatabaseException(Throwable t) {
17 super(t);
18 }
19
20 public DatabaseException() {
21 };
Madan Jampania88d1f52014-11-14 16:45:24 -080022
23 public static class Timeout extends DatabaseException {
24 public Timeout(String message, Throwable t) {
25 super(message, t);
26 }
27
28 public Timeout(String message) {
29 super(message);
30 }
31
32 public Timeout(Throwable t) {
33 super(t);
34 }
35 }
Madan Jampani08822c42014-11-04 17:17:46 -080036}