public class IllegalImportException
extends java.lang.Exception
Thrown if the script engine detects a script line that contains both
import and expression statements:
def myVar = null; import foo;
the developer should fix the script so that import statements appear
on separate lines:
import foo;
def myVar = null;
Since:
release specific (what release of product did this appear in)