public class SchemaDefinitionException
extends java.lang.IllegalArgumentException
Constructor and Description |
---|
SchemaDefinitionException(electric.xml.Attribute xmlAttr,
java.lang.String msg)
Constructs a `SchemaDefinitionException` related to an XML `Attribute`.
|
SchemaDefinitionException(electric.xml.Attribute xmlAttr,
java.lang.String msg,
java.lang.Throwable cause)
Constructs a `SchemaDefinitionException` related to an XML `Attribute`, with a cause.
|
SchemaDefinitionException(electric.xml.Element xmlElement,
java.lang.String msg)
Constructs a `SchemaDefinitionException` related to an XML `Element`.
|
SchemaDefinitionException(electric.xml.Element xmlElement,
java.lang.String msg,
java.lang.Throwable cause)
Constructs a `SchemaDefinitionException` related to an XML `Element`, with a cause.
|
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
getMessagePrefix(electric.xml.Attribute xmlAttr)
Generates a human-readable prefix for an XML `Attribute`.
|
static java.lang.String |
getMessagePrefix(electric.xml.Element xmlElement)
Generates a human-readable prefix for an XML `Element`.
|
public SchemaDefinitionException(electric.xml.Attribute xmlAttr, java.lang.String msg)
xmlAttr
- The XML `Attribute` where the exception occurred.msg
- The detailed error message.public SchemaDefinitionException(electric.xml.Attribute xmlAttr, java.lang.String msg, java.lang.Throwable cause)
xmlAttr
- The XML `Attribute` where the exception occurred.msg
- The detailed error message.cause
- The underlying cause of this exception, can be null.public SchemaDefinitionException(electric.xml.Element xmlElement, java.lang.String msg)
xmlElement
- The XML `Element` where the exception occurred.msg
- The detailed error message.public SchemaDefinitionException(electric.xml.Element xmlElement, java.lang.String msg, java.lang.Throwable cause)
xmlElement
- The XML `Element` where the exception occurred.msg
- The detailed error message.cause
- The underlying cause of this exception, can be null.public static final java.lang.String getMessagePrefix(electric.xml.Attribute xmlAttr)
If the provided XML `Attribute` is `null`, the fixed string "n/a" is returned.
Otherwise, the method delegates to getMessagePrefix(Element)
to obtain
a prefix based on the attribute's associated element.
xmlAttr
- The XML `Attribute` for which to generate the message prefix.public static final java.lang.String getMessagePrefix(electric.xml.Element xmlElement)
If the provided XML `Element` or its root document is `null`, a fixed string indicating the unavailability of the element or document is returned. Otherwise, the prefix is constructed using the document's source path and the element's line number.
xmlElement
- The XML `Element` for which to generate the message prefix.Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.