I have a button on my sail form that generates the pink alert "An error was

I have a button on my sail form that generates the pink alert "An error was encountered while processing your request" and the following error when selected:
ERROR com.appiancorp.rest.shared.FallbackExceptionMapper - Internal Server Error on REST API invocation.
21:16:28,165 INFO [stdout] (ajp-/0.0.0.0:8009-20) java.util.NoSuchElementException: JSONObject["choices"] not found.

This is a brand new SAIL form in a new process model. I do not reference any named 'choices' in my processes and sail form. As anyone else ever send this error? Any suggestion is welcome and I have attached the entire stack trace.

taskFromButtonErrorStackTrace.txt

OriginalPostID-146182

OriginalPostID-146182

  Discussion posts and replies are publicly visible

Parents
  • java.util.NoSuchElementException:

    The NoSuchElementException in Java is thrown when one tries to access an iterable beyond its maximum limit. This means that, this exception is thrown by various accessor methods to indicate that the element being requested does not exist. The next() method in Java returns the next element in the iteration or NoSuchElementException if the iteration has no more elements. The solution to this exception is to check whether the next position of an iterable is filled or empty . The following methods are used to check the next position:

    • hasNext()
    • hasMoreElements()
Reply
  • java.util.NoSuchElementException:

    The NoSuchElementException in Java is thrown when one tries to access an iterable beyond its maximum limit. This means that, this exception is thrown by various accessor methods to indicate that the element being requested does not exist. The next() method in Java returns the next element in the iteration or NoSuchElementException if the iteration has no more elements. The solution to this exception is to check whether the next position of an iterable is filled or empty . The following methods are used to check the next position:

    • hasNext()
    • hasMoreElements()
Children
No Data