Share via


IErrorListener.FatalError(TransformerException) Method

Definition

Receive notification of a non-recoverable error.

[Android.Runtime.Register("fatalError", "(Ljavax/xml/transform/TransformerException;)V", "GetFatalError_Ljavax_xml_transform_TransformerException_Handler:Javax.Xml.Transform.IErrorListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void FatalError (Javax.Xml.Transform.TransformerException? exception);
[<Android.Runtime.Register("fatalError", "(Ljavax/xml/transform/TransformerException;)V", "GetFatalError_Ljavax_xml_transform_TransformerException_Handler:Javax.Xml.Transform.IErrorListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member FatalError : Javax.Xml.Transform.TransformerException -> unit

Parameters

exception
TransformerException

The error information encapsulated in a TransformerException.

Attributes

Exceptions

if the application chooses to discontinue the transformation.

Remarks

Receive notification of a non-recoverable error.

The Transformer must continue to try and provide normal transformation after invoking this method. It should still be possible for the application to process the document through to the end if no other errors are encountered, but there is no guarantee that the output will be useable.

Java documentation for javax.xml.transform.ErrorListener.fatalError(javax.xml.transform.TransformerException).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

See also