if (t != null) {
msg = "preprocessor unexpected error: "+t.toString();
}
else {
msg = e.getMessage();
FileLocator locator = e.getLocator();
if (locator != null) {
msg += " at line "+locator.getLineNumber()+" in file "+locator.getFileName();
}
}
throw new BuildException(msg);
}
}