Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « xml.sax » Python 3.11.3

Classe « SAXParseException »

Informations générales

Héritage

builtins.object
    builtins.BaseException
        builtins.Exception
            SAXException
                SAXParseException

Définition

class SAXParseException(SAXException):

help(SAXParseException)

Encapsulate an XML parse error or warning.

    This exception will include information for locating the error in
    the original XML document. Note that although the application will
    receive a SAXParseException as the argument to the handlers in the
    ErrorHandler interface, the application is not actually required
    to raise the exception; instead, it can simply read the
    information in it and take a different action.

    Since this exception is a subclass of SAXException, it inherits
    the ability to wrap another exception.

Constructeur(s)

Signature du constructeur Description
__init__(self, msg, exception, locator) Creates the exception. The exception parameter is allowed to be None. [extrait de __init__.__doc__]

Liste des attributs statiques

Attributs statiques hérités de la classe BaseException

args

Liste des opérateurs

Opérateurs hérités de la classe SAXException

__getitem__

Liste des opérateurs

Opérateurs hérités de la classe object

__eq__, __ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
__str__(self) Create a string representation of the exception. [extrait de __str__.__doc__]
getColumnNumber(self) The column number of the end of the text where the exception [extrait de getColumnNumber.__doc__]
getLineNumber(self) The line number of the end of the text where the exception occurred. [extrait de getLineNumber.__doc__]
getPublicId(self) Get the public identifier of the entity where the exception occurred. [extrait de getPublicId.__doc__]
getSystemId(self) Get the system identifier of the entity where the exception occurred. [extrait de getSystemId.__doc__]

Méthodes héritées de la classe SAXException

__init_subclass__, __subclasshook__, getException, getMessage

Méthodes héritées de la classe BaseException

__delattr__, __getattribute__, __reduce__, __repr__, __setattr__, __setstate__, add_note, with_traceback

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __getstate__, __hash__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__