* @return double NEVER RETURNED. This method 'returns' an double in order to be usable in
* double expressions
* @throws CALExecutorException
*/
static public double errorCall_double (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;
}