Oracle® Business Intelligence Scheduler Guide > Configuring Java Job Properties for Oracle BI Scheduler >

SchedulerJobException Class


Note the following class of the SchedulerJobException.

package com.siebel.analytics.scheduler.javahostrpccalls;
public final class SchedulerJobException extends Exception {
public SchedulerJobException(int exitCode, int status, String message) {
m_exitCode = exitCode;
m_status = status;
m_message = message;
}
public int getExitCode() {
return m_exitCode;
}
public int getStatus() {
return m_status;
}
public String getMessage() {
return m_message;
}
private int m_exitCode;
private int m_status;
private String m_message;
}

The run method of the SchedulerJavaExtension interface is declared to throw SchedulerJobException. This class is a wrapper of error conditions. The following table describes the three members:

Members
Description

int m_exitCode

The framework would assign this exit code to the iBot.

int m_status

The framework would assign this status code to the iBot.

String m_message

The framework would assign this message to the iBot.

Oracle® Business Intelligence Scheduler Guide Copyright © 2007, Oracle. All rights reserved.