- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.io.IOException
-
- javax.imageio.IIOException
-
- javax.imageio.metadata.IIOInvalidTreeException
-
- All Implemented Interfaces:
- Serializable
public class IIOInvalidTreeException extends IIOException
AnIIOInvalidTreeException
is thrown when an attempt by anIIOMetadata
object to parse a tree ofIIOMetadataNode
s fails. The node that led to the parsing error may be stored. As with any parsing error, the actual error may occur at a different point that that where it is detected. The node returned bygetOffendingNode
should merely be considered as a clue to the actual nature of the problem.
-
-
Field Summary
Fields Modifier and Type Field and Description protected Node
offendingNode
TheNode
that led to the parsing error, ornull
.
-
Constructor Summary
Constructors Constructor and Description IIOInvalidTreeException(String message, Node offendingNode)
Constructs anIIOInvalidTreeException
with a message string and a reference to theNode
that caused the parsing error.IIOInvalidTreeException(String message, Throwable cause, Node offendingNode)
Constructs anIIOInvalidTreeException
with a message string, a reference to an exception that caused this exception, and a reference to theNode
that caused the parsing error.
-
Method Summary
Methods Modifier and Type Method and Description Node
getOffendingNode()
Returns theNode
that caused the error in parsing.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
offendingNode
protected Node offendingNode
TheNode
that led to the parsing error, ornull
.
-
-
Constructor Detail
-
IIOInvalidTreeException
public IIOInvalidTreeException(String message, Node offendingNode)
Constructs anIIOInvalidTreeException
with a message string and a reference to theNode
that caused the parsing error.- Parameters:
message
- aString
containing the reason for the parsing failure.offendingNode
- the DOMNode
that caused the exception, ornull
.
-
IIOInvalidTreeException
public IIOInvalidTreeException(String message, Throwable cause, Node offendingNode)
Constructs anIIOInvalidTreeException
with a message string, a reference to an exception that caused this exception, and a reference to theNode
that caused the parsing error.- Parameters:
message
- aString
containing the reason for the parsing failure.cause
- theThrowable
(Error
orException
) that caused this exception to occur, ornull
.offendingNode
- the DOMNode
that caused the exception, ornull
.
-
-
Method Detail
-
getOffendingNode
public Node getOffendingNode()
Returns theNode
that caused the error in parsing.- Returns:
- the offending
Node
.
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
14/11/2024 23:40:39 Cette version de la page est en cache (à la date du 14/11/2024 23:40:39) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 18/12/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/imageio/metadata/IIOInvalidTreeException.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.