public SpinDataFormatException unrecognizableDataFormatException() {
return new SpinDataFormatException(exceptionMessage("009", "No matching data format detected"));
}
public SpinXmlTreeElementException elementIsNotChildOfThisElement(SpinXmlTreeElement existingChildElement, SpinXmlTreeElement parentDomElement) {
return new SpinXmlTreeElementException(exceptionMessage("010", "The element with namespace '{}' and name '{}' " +
"is not a child element of the element with namespace '{}' and name '{}'",
existingChildElement.namespace(), existingChildElement.name(),
parentDomElement.namespace(), parentDomElement.name()
));
}