Class ErrorManager
java.lang.Object
java.util.logging.ErrorManager
ErrorManager objects can be attached to Handlers to process
any error that occurs 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 logging call (who is unlikely to be interested) the Handler should call its associated ErrorManager.
- Since:
- 1.4
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intCLOSE_FAILURE is used when a close of an output stream fails.static final intFLUSH_FAILURE is used when a flush to an output stream fails.static final intFORMAT_FAILURE is used when formatting fails for any reason.static final intGENERIC_FAILURE is used for failure that don't fit into one of the other categories.static final intOPEN_FAILURE is used when an open of an output stream fails.static final intWRITE_FAILURE is used when a write to an output stream fails. -
Constructor Summary
Constructors -
Method Summary
Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.booleanIndicates whether some other object is "equal to" this one.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.inthashCode()Returns a hash code value for this object.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
GENERIC_FAILURE
public static final int GENERIC_FAILUREGENERIC_FAILURE is used for failure that don't fit into one of the other categories.- See Also:
-
WRITE_FAILURE
public static final int WRITE_FAILUREWRITE_FAILURE is used when a write to an output stream fails.- See Also:
-
FLUSH_FAILURE
public static final int FLUSH_FAILUREFLUSH_FAILURE is used when a flush to an output stream fails.- See Also:
-
CLOSE_FAILURE
public static final int CLOSE_FAILURECLOSE_FAILURE is used when a close of an output stream fails.- See Also:
-
OPEN_FAILURE
public static final int OPEN_FAILUREOPEN_FAILURE is used when an open of an output stream fails.- See Also:
-
FORMAT_FAILURE
public static final int FORMAT_FAILUREFORMAT_FAILURE is used when formatting fails for any reason.- See Also:
-
-
Constructor Details
-
ErrorManager
public ErrorManager()Create anErrorManager.
-
-
Method Details
-
error
The error method is called when a Handler failure occurs.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.
- Parameters:
msg- a descriptive string (may be null)ex- an exception (may be null)code- an error code defined in ErrorManager
-