javax.jcr.ItemExistsException: Same name siblings are not allowed
Hi,
I am trying to move pages from one place to another place using seesion. But I am getting javax.jcr.ItemExistsException: Same name siblings are not allowed.
Below is my code:
String sourcePath = "/content/a/b1";
String destinationPath = "/content/a/b2";
session.move(sourcePath, destinationPath);
session.save();