Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 17 java.logging.jmod - Logging Module
JDK 17 java.logging.jmod is the JMOD file for JDK 17 Logging module.
JDK 17 Logging module compiled class files are stored in \fyicenter\jdk-17.0.5\jmods\java.logging.jmod.
JDK 17 Logging module compiled class files are also linked and stored in the \fyicenter\jdk-17.0.5\lib\modules JImage file.
JDK 17 Logging module source code files are stored in \fyicenter\jdk-17.0.5\lib\src.zip\java.logging.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ java/util/logging/ErrorManager.java
/* * Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package java.util.logging; /** * ErrorManager objects can be attached to Handlers to process * any error that occurs on a Handler during Logging. * <p> * When processing logging output, if a Handler encounters problems * then rather than throwing an Exception back to the issuer of * the logging call (who is unlikely to be interested) the Handler * should call its associated ErrorManager. */ public class ErrorManager { private boolean reported = false; /** * Create an {@code ErrorManager}. */ public ErrorManager() {} /* * We declare standard error codes for important categories of errors. */ /** * GENERIC_FAILURE is used for failure that don't fit * into one of the other categories. */ public static final int GENERIC_FAILURE = 0; /** * WRITE_FAILURE is used when a write to an output stream fails. */ public static final int WRITE_FAILURE = 1; /** * FLUSH_FAILURE is used when a flush to an output stream fails. */ public static final int FLUSH_FAILURE = 2; /** * CLOSE_FAILURE is used when a close of an output stream fails. */ public static final int CLOSE_FAILURE = 3; /** * OPEN_FAILURE is used when an open of an output stream fails. */ public static final int OPEN_FAILURE = 4; /** * FORMAT_FAILURE is used when formatting fails for any reason. */ public static final int FORMAT_FAILURE = 5; /** * The error method is called when a Handler failure occurs. * <p> * This method may be overridden in subclasses. The default * behavior in this base class is that the first call is * reported to System.err, and subsequent calls are ignored. * * @param msg a descriptive string (may be null) * @param ex an exception (may be null) * @param code an error code defined in ErrorManager */ public synchronized void error(String msg, Exception ex, int code) { if (reported) { // We only report the first error, to avoid clogging // the screen. return; } reported = true; String text = "java.util.logging.ErrorManager: " + code; if (msg != null) { text = text + ": " + msg; } System.err.println(text); if (ex != null) { ex.printStackTrace(); } } }
⏎ java/util/logging/ErrorManager.java
Or download all of them as a single archive file:
File name: java.logging-17.0.5-src.zip File size: 106791 bytes Release date: 2022-09-13 Download
⇒ JDK 17 java.management.jmod - Management Module
2023-09-23, 3213👍, 0💬
Popular Posts:
If you are a Java developer, it is very often that you need to use some 3rd party libraries to perfo...
JSP(tm) Standard Tag Library 1.1 implementation - Jakarta Taglibs hosts the Standard Taglib 1.1, an ...
commons-io-1.4.jar is the JAR file for Commons IO 1.4, which is a library of utilities to assist wit...
Java Architecture for XML Binding (JAXB) is a Java API that allows Java developers to map Java class...
What Is jsse.jar (JDK 6) Java Secure Socket Extension? jsse.jar, Java Secure Socket Extension, is Ja...