Uses of Class
org.jasig.portal.channels.error.ErrorCode

Packages that use ErrorCode
org.jasig.portal   
org.jasig.portal.channels.error   
 

Uses of ErrorCode in org.jasig.portal
 

Methods in org.jasig.portal with parameters of type ErrorCode
private  IChannel ChannelManager.replaceWithErrorChannel(java.lang.String channelSubscribeId, ErrorCode errorCode, java.lang.Throwable t, java.lang.String message, boolean setRuntimeData)
          A helper method to replace all occurences of a given channel instance with that of an error channel.
 

Uses of ErrorCode in org.jasig.portal.channels.error
 

Fields in org.jasig.portal.channels.error declared as ErrorCode
static ErrorCode ErrorCode.CHANNEL_AUTHORIZATION_EXCEPTION
          Error code representing failure to render due to lack of authorization.
static ErrorCode ErrorCode.CHANNEL_MISSING_EXCEPTION
          Error code representing the channel being just plain missing.
private  ErrorCode ErrorDocument.code
          The error code to be presented in the document.
private static ErrorCode[] ErrorCode.codeArray
           
static ErrorCode ErrorCode.GENERAL_ERROR
          Generic error code
static ErrorCode ErrorCode.RENDER_TIME_EXCEPTION
          Error code for failure during rendering.
static ErrorCode ErrorCode.SET_PCS_EXCEPTION
          Error code representing failure when framework attempts to set channel portal control structures.
static ErrorCode ErrorCode.SET_RUNTIME_DATA_EXCEPTION
          Error code for errors at time runtime data is set.
static ErrorCode ErrorCode.SET_STATIC_DATA_EXCEPTION
          Error code for errors at time static data is set
static ErrorCode ErrorCode.TIMEOUT_EXCEPTION
          Error code for channels that fail to complete rendering during allotted time.
static ErrorCode ErrorCode.UNKNOWN_ERROR
          Generic error code
 

Methods in org.jasig.portal.channels.error that return ErrorCode
static ErrorCode ErrorCode.codeForInt(int codeNum)
          Obtain the ErrorCode for the given code number, or null if the code number does not correspond to an error code.
 ErrorCode ErrorDocument.getCode()
           
 

Methods in org.jasig.portal.channels.error with parameters of type ErrorCode
private  void CError.resetCError(ErrorCode errorCode, java.lang.Throwable throwable, java.lang.String channelSubscribeId, IChannel channelInstance, java.lang.String message)
          Resets internal state of CError.
 void ErrorDocument.setCode(ErrorCode code)
           
 

Constructors in org.jasig.portal.channels.error with parameters of type ErrorCode
CError(ErrorCode errorCode, java.lang.String message, java.lang.String channelSubscribeId, IChannel channelInstance)
          Instantiate a CError representing a particular channel's failure, including a message and errorCode, but not a Throwable.
CError(ErrorCode errorCode, java.lang.Throwable throwable, java.lang.String channelSubscribeId, IChannel channelInstance)
          Construct an instance of the Error channel representing a failure to render of a particular subscribed channel for reason of having thrown a Throwable.
CError(ErrorCode errorCode, java.lang.Throwable exception, java.lang.String channelSubscribeId, IChannel channelInstance, java.lang.String message)
          Instantiate a CError instance representing the failure of some particular channel, including an error code, message, and the Throwable.