if(fileName!=null && fileName.length()!=0)
{
this.fileName = CompiledScriptFactory.compileScript(fileName, exprLanguage);
}
else
throw new EngineException("Property fileName is mandatory.");
if(fileExt!=null && fileExt.length()!=0)
{
this.fileExt = CompiledScriptFactory.compileScript(fileExt, exprLanguage);
}
}
catch(ScriptException ex)
{
throw new EngineException(ex);
}
}