in src/main/java/org/apache/maven/xinclude/stax/XPointer.java [105:114]
public void setShorthandPointer(String shorthandPointer) {
if (hasPointerParts()) {
throw new UnsupportedOperationException("A PointerPart Pointer already exists for this XPointer");
}
if (shorthandPointer == null) {
throw new NullPointerException("The shorthandPointer argument is null");
}
this.shorthandPointer = shorthandPointer;
}