in src/main/java/org/apache/sling/api/resource/path/PathBuilder.java [35:42]
public PathBuilder(final String path) {
if ( path == null || path.isEmpty() || path.charAt(0) != '/') {
throw new IllegalArgumentException("Path '" + path + "' is not absolute");
}
sb.append(path);
}