/** Verify if the scrollable cursor can iterate a forward only result set */
 protected void verify() {
   if (caughtException != null) {
     if (caughtException.getDatabaseErrorCode()
         == 17075) { // SQLException: Invalid operation for forward only result set
       throwError(
           "The scrollable cursor can't iterate a forward only result set", caughtException);
     } else {
       throwError(caughtException.getMessage(), caughtException);
     }
   }
 }