001/* 002 * ============================================================================ 003 * Copyright © 2002-2021 by Thomas Thrien. 004 * All Rights Reserved. 005 * ============================================================================ 006 * 007 * Licensed to the public under the agreements of the GNU Lesser General Public 008 * License, version 3.0 (the "License"). You may obtain a copy of the License at 009 * 010 * http://www.gnu.org/licenses/lgpl.html 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 014 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 015 * License for the specific language governing permissions and limitations 016 * under the License. 017 */ 018 019package org.tquadrat.foundation.config.spi.prefs; 020 021import static org.apiguardian.api.API.Status.STABLE; 022 023import java.io.Serial; 024 025import org.apiguardian.api.API; 026import org.tquadrat.foundation.annotation.ClassVersion; 027 028/** 029 * The exception that is thrown from a configuration bean in case an 030 * operation on the connected 031 * {@link java.util.prefs.Preferences} 032 * instance fails. 033 * 034 * @extauthor Thomas Thrien - thomas.thrien@tquadrat.org 035 * @version $Id: PreferencesException.java 941 2021-12-18 22:34:37Z tquadrat $ 036 * @since 0.1.0 037 * 038 * @UMLGraph.link 039 */ 040@ClassVersion( sourceVersion = "$Id: PreferencesException.java 941 2021-12-18 22:34:37Z tquadrat $" ) 041@API( status = STABLE, since = "0.1.0" ) 042public final class PreferencesException extends RuntimeException 043{ 044 /*------------------------*\ 045 ====** Static Initialisations **=========================================== 046 \*------------------------*/ 047 /** 048 * The serial version UID for objects of this class: {@value}. 049 * 050 * @hidden 051 */ 052 @Serial 053 private static final long serialVersionUID = 1L; 054 055 /*--------------*\ 056 ====** Constructors **===================================================== 057 \*--------------*/ 058 /** 059 * Creates a new {@code PreferencesException} instance. 060 */ 061 public PreferencesException() { super(); } 062 063 /** 064 * Creates a new {@code PreferencesException} instance with the specified 065 * detail message. The cause is not initialised, and may subsequently be 066 * initialised by a call to 067 * {@link #initCause(Throwable)}. 068 * 069 * @param message The detail message; it is saved for later retrieval by 070 * the 071 * {@link #getMessage()} 072 * method. 073 */ 074 public PreferencesException( final String message ) { super( message ); } 075 076 /** 077 * Creates a new {@code PreferencesException} instance with the specified 078 * cause and a detail message of 079 * <pre><code>(cause == null ? null : cause.toString() )</code></pre> 080 * (which typically contains the class and detail message of 081 * {@code cause}). This constructor is useful for exceptions that are 082 * little more than wrappers for other instances of 083 * {@link Throwable}. 084 * 085 * @param cause The cause (which is saved for later retrieval by the 086 * {@link #getCause()} 087 * method). A {@code null} value is permitted, and indicates that the 088 * cause is non-existent or unknown. 089 */ 090 public PreferencesException( final Throwable cause ) { super( cause ); } 091 092 /** 093 * Creates a new {@code PreferencesException} instance with the specified 094 * detail message and cause. 095 * 096 * @note The detail message associated with {@code cause} is <i>not</i> 097 * automatically incorporated in this exception's detail message. 098 * 099 * @param message The detail message; it is saved for later retrieval 100 * by the 101 * {@link #getMessage()} 102 * method. 103 * @param cause The cause (which is saved for later retrieval by the 104 * {@link #getCause()} 105 * method). A {@code null} value is permitted, and indicates that the 106 * cause is non-existent or unknown. 107 */ 108 public PreferencesException( final String message, final Throwable cause ) { super( message, cause ); } 109} 110// class PreferencesException 111 112/* 113 * End of File 114 */