* @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);
}