org.openide
Interface ErrorManager.Annotation

Enclosing class:
ErrorManager

public static interface ErrorManager.Annotation

Annotation that can be attached to an error.


Method Summary
 Date getDate()
          Time at which the exception occurred.
 String getLocalizedMessage()
          Localized message.
 String getMessage()
          Non-localized message.
 int getSeverity()
          Severity of the exception.
 Throwable getStackTrace()
          Stack trace.
 

Method Detail

getMessage

public String getMessage()
Non-localized message.
Returns:
associated message or null

getLocalizedMessage

public String getLocalizedMessage()
Localized message.
Returns:
message to be presented to the user or null

getStackTrace

public Throwable getStackTrace()
Stack trace. The stack trace should locate the method and position in the method where the error occurred.
Returns:
exception representing the location of the error or null

getDate

public Date getDate()
Time at which the exception occurred.
Returns:
the time or null

getSeverity

public int getSeverity()
Severity of the exception.
Returns:
number representing the severity, e.g. ErrorManager.EXCEPTION


Built on December 12 2001.  |  Portions Copyright 1997-2001 Sun Microsystems, Inc. All rights reserved.