.. role:: ts-api-decorator

#############
XmlParseError
#############

.. container:: ts-api-section

   .. js:class:: XmlParseError

      Error object that is thrown when attempting to parse XML data.
      This can be thrown in the case of an actual parsing error or a malformed XML file.
      The error object itself will provide a detailed description of the error.



.. container:: api-index-section

   .. rubric:: Constructors

   .. rst-class:: api-index-list-item api-kind-constructor api-parent-kind-class

   * :js:meth:`~XmlParseError.constructor`



.. container:: api-index-section

   .. rubric:: Properties

   .. rst-class:: api-index-list-item api-kind-property api-parent-kind-class

   * :js:attr:`~XmlParseError.message`
   * :js:attr:`~XmlParseError.name`
   * :js:attr:`~XmlParseError.stack`
   * :js:attr:`~XmlParseError.prepareStackTrace`
   * :js:attr:`~XmlParseError.stackTraceLimit`



.. container:: api-index-section

   .. rubric:: Methods

   .. rst-class:: api-index-list-item api-kind-method api-parent-kind-class

   * :js:meth:`~XmlParseError.captureStackTrace`





------------

Constructors
============

.. container:: ts-api-section

   .. js:function:: XmlParseError.constructor( message)

      :param message: None
      :type message: string


      Creates a new XmlParseError


      :rtype: XmlParseError



Properties
==========

.. container:: ts-api-section

   .. js:attribute:: XmlParseError.message

      :type: string





.. container:: ts-api-section

   .. js:attribute:: XmlParseError.name

      :type: string





.. container:: ts-api-section

   .. js:attribute:: XmlParseError.stack

      :type: string :ts-api-decorator:`optional`





.. container:: ts-api-section

   .. js:attribute:: XmlParseError.prepareStackTrace

      :type: function :ts-api-decorator:`optional`

      Optional override for formatting stack traces

      :see: https://v8.dev/docs/stack-trace-api#customizing-stack-traces


      .. js:function:: prepareStackTrace( err, stackTraces)
         :noindex:

         :param err: None
         :type err: Error
         :param stackTraces: None
         :type stackTraces: [CallSite]


         :rtype: any





.. container:: ts-api-section

   .. js:attribute:: XmlParseError.stackTraceLimit

      :type: number





Methods
=======

.. rst-class:: ts-api-section

:ts-api-decorator:`static` captureStackTrace
--------------------------------------------

.. js:method:: XmlParseError.captureStackTrace( targetObject[, constructorOpt])

   :param targetObject: None
   :type targetObject: object
   :param constructorOpt: :ts-api-decorator:`optional` None
   :type constructorOpt: Function


   Create .stack property on a target object


   :rtype: void

