Package org.jasig.portal.channels.error

Examples of org.jasig.portal.channels.error.ErrorCode


            log.error("Failed to complete action", t);
            return false;
        }

        if (renderingStatus != IChannelRenderer.RENDERING_SUCCESSFUL) {
            final ErrorCode errorCode;
            if (renderingStatus == IChannelRenderer.RENDERING_TIMED_OUT) {
                errorCode = ErrorCode.TIMEOUT_EXCEPTION;
            }
            else {
                errorCode = ErrorCode.GENERAL_ERROR;
View Full Code Here


     * @param throwable - cause of failed channel's failure
     * @param channelSubscribeId - identifies the failed channel
     * @param channelInstance - the failed channel
     */
    public CError(int errorCode, Throwable throwable, String channelSubscribeId, IChannel channelInstance) {
        ErrorCode codeObject = ErrorCode.codeForInt(errorCode);
        this.delegate =
            new org.jasig.portal.channels.error.CError(codeObject, throwable,
                    channelSubscribeId, channelInstance);
    }
View Full Code Here

     * @param message - describes error
     * @param channelSubscribeId - identifies failed channel
     * @param channelInstance - failed channel
     */
    public CError(int errorCode, String message,String channelSubscribeId,IChannel channelInstance) {
        ErrorCode codeObject = ErrorCode.codeForInt(errorCode);
        this.delegate = new org.jasig.portal.channels.error.CError(codeObject, message,
                channelSubscribeId, channelInstance);
    }
View Full Code Here

     * @param channelSubscribeId - identifies failed channel
     * @param channelInstance - the failed channel instance
     * @param message - message describing failure
     */
    public CError(int errorCode, Throwable exception, String channelSubscribeId,IChannel channelInstance, String message) {
        ErrorCode codeObject = ErrorCode.codeForInt(errorCode);
        this.delegate = new org.jasig.portal.channels.error.CError(codeObject, exception, channelSubscribeId, channelInstance, message);
    }
View Full Code Here

TOP

Related Classes of org.jasig.portal.channels.error.ErrorCode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.