{
this.fOut.print("FatalError");
this.eStatus = false;
}
this.fOut.print("] ");
DOMLocator localDOMLocator = paramDOMError.getLocation();
if (localDOMLocator != null)
{
this.fOut.print(localDOMLocator.getLineNumber());
this.fOut.print(":");
this.fOut.print(localDOMLocator.getColumnNumber());
this.fOut.print(":");
this.fOut.print(localDOMLocator.getByteOffset());
this.fOut.print(",");
this.fOut.print(localDOMLocator.getUtf16Offset());
Node localNode = localDOMLocator.getRelatedNode();
if (localNode != null)
{
this.fOut.print("[");
this.fOut.print(localNode.getNodeName());
this.fOut.print("]");
}
String str = localDOMLocator.getUri();
if (str != null)
{
int j = str.lastIndexOf('/');
if (j != -1)
str = str.substring(j + 1);