001/*
002 * ============================================================================
003 * Copyright © 2002-2024 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.exception;
020
021import org.apiguardian.api.API;
022import org.tquadrat.foundation.annotation.ClassVersion;
023
024import java.io.Serial;
025
026import static org.apiguardian.api.API.Status.STABLE;
027import static org.tquadrat.foundation.lang.Objects.requireNonNullArgument;
028import static org.tquadrat.foundation.lang.Objects.requireNotEmptyArgument;
029
030/**
031 *  Use the application error to signal the abort of an application.<br>
032 *  <br>This implementation of
033 *  {@link Error}
034 *  allows to set a flag that indicates whether this instance was already
035 *  logged or not. The flag is honoured by some methods in Foundation Logging.
036 *
037 *  @extauthor Thomas Thrien - thomas.thrien@tquadrat.org
038 *  @version $Id: ApplicationError.java 1119 2024-03-16 09:03:57Z tquadrat $
039 *  @since 0.0.5
040 *
041 *  @UMLGraph.link
042 */
043@SuppressWarnings( "ClassWithTooManyConstructors" )
044@ClassVersion( sourceVersion = "$Id: ApplicationError.java 1119 2024-03-16 09:03:57Z tquadrat $" )
045@API( status = STABLE, since = "0.0.5" )
046public class ApplicationError extends Error
047{
048        /*------------*\
049    ====** Attributes **=======================================================
050        \*------------*/
051    /**
052     *  A flag that indicates if the causing exception or the error condition
053     *  was already logged.
054     *
055     *  @serial
056     */
057    private boolean m_IsAlreadyLogged = false;
058
059        /*------------------------*\
060    ====** Static Initialisations **===========================================
061        \*------------------------*/
062    /**
063     *  The serial version UID for objects of this class: {@value}.
064     *
065     *  @hidden
066     */
067    @Serial
068    private static final long serialVersionUID = 1L;
069
070        /*--------------*\
071    ====** Constructors **=====================================================
072        \*--------------*/
073    /**
074     *  Creates a new {@code ApplicationError} instance. The 'isLogged' flag
075     *  is set to {@code false}.
076     *
077     *  @param  message The detail message. It is saved for later retrieval by
078     *      the
079     *      {@link #getMessage()}
080     *      method.
081     *
082     *  @see Error#Error(String)
083     */
084    public ApplicationError( final String message ) { this( message, false ); }
085
086    /**
087     *  Creates a new {@code ApplicationError} instance.
088     *
089     *  @param  message The detail message. It is saved for later retrieval by
090     *      the
091     *      {@link #getMessage()}
092     *      method.
093     *  @param  isLogged    {@code true} if the error condition or the
094     *      causing exception was already logged, {@code false} if it
095     *      still has to be logged.
096     */
097    public ApplicationError( final String message, final boolean isLogged )
098    {
099        super( requireNotEmptyArgument( message, "message" ) );
100
101        m_IsAlreadyLogged = isLogged;
102    }   //  ApplicationError()
103
104    /**
105     *  Creates a new {@code ApplicationError} instance. The '{@code isLogged}'
106     *  flag is set to {@code false}.
107     *
108     *  @param  cause   The cause (which is saved for later retrieval by the
109     *      {@link #getCause()}
110     *      method). Different from
111     *      {@link Error#Error(Throwable)}
112     *      is {@code null} not a valid value.
113     *
114     *  @see Error#Error(Throwable)
115     */
116    public ApplicationError( final Throwable cause ) { this( cause, false ); }
117
118    /**
119     *  Creates a new {@code ApplicationError} instance.
120     *
121     *  @param  cause   The cause (which is saved for later retrieval by the
122     *      {@link #getCause()}
123     *      method). Different from
124     *      {@link Error#Error(Throwable)}
125     *      is {@code null} not a valid value.
126     *  @param  isLogged    {@code true} if the error condition or the
127     *      causing exception was already logged, {@code false} if it
128     *      still has to be logged.
129     */
130    public ApplicationError( final Throwable cause, final boolean isLogged )
131    {
132        super( requireNonNullArgument( cause, "cause" ) );
133
134        m_IsAlreadyLogged = isLogged;
135    }   //  ApplicationError()
136
137    /**
138     *  Creates a new {@code ApplicationError} instance. The '{@code isLogged}'
139     *  flag is set to {@code false}.
140     *
141     *  @param  message The detail message. It is saved for later retrieval by
142     *      the
143     *      {@link #getMessage()}
144     *      method.
145     *  @param  cause   The cause (which is saved for later retrieval by the
146     *      {@link #getCause()}
147     *      method). Different from
148     *      {@link Error#Error(Throwable)}
149     *      is {@code null} not a valid value.
150     *
151     *  @see Error#Error(String, Throwable)
152     */
153    public ApplicationError( final String message, final Throwable cause ) { this( message, cause, false ); }
154
155    /**
156     *  Creates a new {@code ApplicationError} instance.
157     *
158     *  @param  message The detail message. It is saved for later retrieval by
159     *      the
160     *      {@link #getMessage()}
161     *      method.
162     *  @param  cause   The cause (which is saved for later retrieval by the
163     *      {@link #getCause()}
164     *      method). Different from
165     *      {@link Error#Error(Throwable)}
166     *      is {@code null} not a valid value.
167     *  @param  isLogged    {@code true} if the error condition or the
168     *      causing exception was already logged, {@code false} if it
169     *      still has to be logged.
170     */
171    public ApplicationError( final String message, final Throwable cause, final boolean isLogged )
172    {
173        super( requireNotEmptyArgument( message, "message" ), requireNonNullArgument( cause, "cause" ) );
174
175        m_IsAlreadyLogged = isLogged;
176    }   //  ApplicationError()
177
178        /*---------*\
179    ====** Methods **==========================================================
180        \*---------*/
181    /**
182     *  Returns the 'is logged' flag.
183     *
184     *  @return {@code true} if the error condition or the causing
185     *      exception were already logged, {@code false} otherwise.
186     */
187    @SuppressWarnings("PublicMethodNotExposedInInterface")
188    public final boolean isLogged() { return m_IsAlreadyLogged; }
189
190    /**
191     *  Sets the 'is logged' flag to {@code true}.
192     */
193    @SuppressWarnings("PublicMethodNotExposedInInterface")
194    public final void setLogged() { m_IsAlreadyLogged = true; }
195}
196//  class ApplicationError
197
198/*
199 *  End of File
200 */