|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--java.util.logging.ErrorManager
ErrorManager objects can be attached to Handlers to process any error that occur on a Handler during Logging.
When processing logging output, if a Handler encounters problems then rather than throwing an Exception back to the issuer of the the logging call (who is unlikely to be interested) the Handler should call its associated ErrorManager.
Field Summary | |
static int |
CLOSE_FAILURE
CLOSE_FAILURE is used when a close of an output stream fails. |
static int |
FLUSH_FAILURE
FLUSH_FAILURE is used when a flush to an output stream fails. |
static int |
FORMAT_FAILURE
FORMAT_FAILURE is used when formatting fails for any reason. |
static int |
GENERIC_FAILURE
GENERIC_FAILURE is used for failure that don't fit into one of the other catgories. |
static int |
OPEN_FAILURE
OPEN_FAILURE is used when an open of an output stream fails. |
static int |
WRITE_FAILURE
WRITE_FAILURE is used when a write to an output stream fails. |
Constructor Summary | |
ErrorManager()
|
Method Summary | |
void |
error(String msg,
Exception ex,
int code)
The error method is called when a Handler failure occurs. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final int GENERIC_FAILURE
public static final int WRITE_FAILURE
public static final int FLUSH_FAILURE
public static final int CLOSE_FAILURE
public static final int OPEN_FAILURE
public static final int FORMAT_FAILURE
Constructor Detail |
public ErrorManager()
Method Detail |
public void error(String msg, Exception ex, int code)
This method may be overriden in subclasses. The default behavior in this base class is that the first call is reported to System.err, and subsequent calls are ignored.
msg
- a descriptive string (may be null)ex
- an exception (may be null)code
- an error code defined in ErrorManager
|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.