605e3484920efc7b56b5643e254cf8828bc62e92
[aaa.git] / aaa-shiro / impl / src / main / java / org / opendaylight / aaa / datastore / h2 / StoreException.java
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.datastore.h2;
10
11 /**
12  * Exception indicating an error in an H2 data store.
13  *
14  * @author peter.mellquist@hp.com
15  */
16 @SuppressWarnings("serial")
17 public class StoreException extends Exception {
18
19     public StoreException(String message) {
20         super(message);
21     }
22
23     public StoreException(String message, Throwable cause) {
24         super(message, cause);
25     }
26
27     public StoreException(Throwable cause) {
28         super(cause);
29     }
30 }