7d2f2b9a31e6fe86aacac743b83f388bdb11868f
[moon.git] /
1 /*
2  * Copyright (c) 2014, 2016 Hewlett-Packard Development Company, L.P. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.aaa.h2.persistence;
10
11 /**
12  * Exception indicating an error in an H2 data store.
13  *
14  * @author peter.mellquist@hp.com
15  */
16
17 public class StoreException extends Exception {
18     public StoreException(String message) {
19         super(message);
20     }
21
22     public StoreException(String message, Throwable cause) {
23         super(message, cause);
24     }
25
26     public StoreException(Throwable cause) {
27         super(cause);
28     }
29 }