站内搜索: 请输入搜索关键词
当前页面: 在线文档首页 > JBOSS Portal 2.4 API 英文版文档

ErrorResult - JBOSS Portal 2.4 API 英文版文档


org.jboss.portal.portlet.result
Class ErrorResult

java.lang.Object
  extended byorg.jboss.portal.portlet.result.Result
      extended byorg.jboss.portal.portlet.result.ErrorResult
Direct Known Subclasses:
SecurityErrorResult

public class ErrorResult
extends Result

Application level error.


Constructor Summary
ErrorResult(java.lang.String message)
           
ErrorResult(java.lang.Throwable throwable)
           
 
Method Summary
 java.lang.String getMessage()
          The logged message.
 java.lang.Throwable getThrowable()
          The throwable.
 void logErrorTo(org.jboss.logging.Logger log, java.lang.String logMessage)
          Logs an error message to the specified logger, using either the message or this ErrorResult's Throwable if available.
 java.lang.String toHTML()
          Provides an HTML description of the error, using either the message or the encapsulated Throwable.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ErrorResult

public ErrorResult(java.lang.Throwable throwable)

ErrorResult

public ErrorResult(java.lang.String message)
Method Detail

getThrowable

public java.lang.Throwable getThrowable()
The throwable. Can be a null object.


getMessage

public java.lang.String getMessage()
The logged message.


logErrorTo

public void logErrorTo(org.jboss.logging.Logger log,
                       java.lang.String logMessage)
Logs an error message to the specified logger, using either the message or this ErrorResult's Throwable if available.

Parameters:
log -
logMessage -

toHTML

public java.lang.String toHTML()
Provides an HTML description of the error, using either the message or the encapsulated Throwable.

Returns: