* @throws CALExecutorException
*/
static public Object errorCall_Object (ErrorInfo errorInfo, String errorMessage) throws CALExecutorException {
CALExecutorException e = new CALExecutorException.ExternalException.ErrorFunctionException(errorInfo, errorMessage);
if (System.getProperty(LECCMachineConfiguration.DEBUG_INFO_PROP) != null) {
e.printStackTrace();
}
throw e;
}
/**