站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > NetBeans API Javadoc 5.0.0

ErrorManager.Annotation (NetBeans Utilities API) - NetBeans API Javadoc 5.0.0

 

org.openide
Interface ErrorManager.Annotation

Enclosing interface:
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. ErrorManager.UNKNOWN serves as the default.

Returns:
number representing the severity, e.g. ErrorManager.EXCEPTION

 

Built on May 3 2007.  |  Portions Copyright 1997-2005 Sun Microsystems, Inc. All rights reserved.