org.jdesktop.swingx.error.ErrorLevel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swingx Show documentation
Show all versions of swingx Show documentation
Contains extensions to the Swing GUI toolkit, including new and enhanced components that provide functionality commonly required by rich client applications.
/*
* $Id: ErrorLevel.java,v 1.1 2006/11/10 17:02:53 rbair Exp $
*
* Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
* Santa Clara, California 95054, U.S.A. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
package org.jdesktop.swingx.error;
import java.util.logging.Level;
/**
* Extends {@link java.util.logging.Level} adding the FATAL
error level.
* Fatal errors are those unrecoverable errors that must result in the termination
* of the application.
*
* @status REVIEWED
* @author rbair
*/
public class ErrorLevel extends Level {
/**
* FATAL is a message level indicating a catastrophic failure that should
* result in the immediate termination of the application.
*
* In general FATAL messages should describe events that are
* of considerable critical and which will prevent
* program execution. They should be reasonably intelligible
* to end users and to system administrators.
* This level is initialized to 1100
.
*/
public static final ErrorLevel FATAL = new ErrorLevel("FATAL", 1100);
/** Creates a new instance of ErrorLevel */
protected ErrorLevel(String name, int value) {
super(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy