if (charIte.next()=='{' || charIte.next()=='}'
                || charIte.next()=='[' || charIte.next()==']' 
                || charIte.next()=='(' || charIte.next()==')'
                || charIte.next()=='*' || charIte.next()=='"' 
                || charIte.next()=='/'){
}
The program returns:
Exception in thread "main" java.util.NoSuchElementException at line
|| charIte.next()=='(' || charIte.next()==')'
What is the problem?