Server processing error

Hey Mark, it happens with the data querying API operation. Heres a function in my app with throws the error:

-(IBAction)confirmEntry {

// get currentuser data row from entries table

BackendlessDataQuery *userEntriesQuery = [BackendlessDataQuery query];

userEntriesQuery.whereClause = [NSString stringWithFormat:@"emailAddress = \'%@\'", _currentUser.email];

// vvv throws error on this line vvv

[[backendless.persistenceService of:[Entries class]] find:userEntriesQuery response:^(BackendlessCollection *userEntries) {

    

    NSArray *currentPage = [userEntries getCurrentPage];

    Entries *userEntry = [currentPage objectAtIndex:0];

    

} error:^(Fault *error) {

    

    NSLog(@"failed to search db with error: %@ %@", error.faultCode, error.message);

    

}];

}

App ID is: 6DF4654A-5CF0-D813-FF3B-E00B964B1100

And the specific error outputed is:
“2016-06-30 10:08:45.478 TBRB Project[1507:41142] failed to search db with error: Server.Processing java.lang.RuntimeException: java.lang.RuntimeException: com.mysql.jdbc.exceptions.jdbc4.MySQLSyntaxErrorException: Table ‘6DF4654A-5CF0-D813-FF3B-E00B964B1100.413EBBE7-5F42-B664-FF19-407323196800.acl’ doesn’t exist”

Thanks -Luke