1 /*
2 * Copyright (c) 2021-2023. Roland T. Lichti, Kaiserpfalz EDV-Service.
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17
18 package de.kaiserpfalzedv.commons.api.store;
19
20 import de.kaiserpfalzedv.commons.api.BaseSystemException;
21
22 /**
23 * StoreException -- The base exception for data stores.
24 *
25 * @author klenkes74 {@literal <rlichti@kaiserpfalz-edv.de>}
26 * @since 2.0.0 2021-05-24
27 */
28 public abstract class StoreException extends BaseSystemException {
29 /**
30 * @param message the detail message.
31 * @since 2.0.0 2021-05-24
32 */
33 public StoreException(final String message) {
34 super(message);
35 }
36
37 /**
38 * @param message the detail message.
39 * @param cause the cause. (A {@code null} value is permitted,
40 * and indicates that the cause is nonexistent or unknown.)
41 */
42 public StoreException(final String message, final Throwable cause) {
43 super(message, cause);
44 }
45
46 /**
47 * @param cause the cause. (A {@code null} value is permitted,
48 * and indicates that the cause is nonexistent or unknown.)
49 * @since 2.0.0 2021-05-24
50 */
51 public StoreException(final Throwable cause) {
52 super(cause);
53 }
54
55 /**
56 * @param message the detail message.
57 * @param cause the cause. (A {@code null} value is permitted,
58 * and indicates that the cause is nonexistent or unknown.)
59 * @param enableSuppression whether or not suppression is enabled
60 * or disabled
61 * @param writableStackTrace whether or not the stack trace should
62 * be writable
63 * @since 2.0.0 2021-05-24
64 */
65 public StoreException(final String message, final Throwable cause, final boolean enableSuppression, final boolean writableStackTrace) {
66 super(message, cause, enableSuppression, writableStackTrace);
67 }
68 }