Creation of bst from given sorted array

i am getting No element Exception as an error please tell me where I am wrong

Two things are wrong
1.this.root = construct(arr, 0, arr.length);// arr.length-1
2.int mid =low + high / 2; // (low+high)/2


you can see this