CRRUI1072E An exception_name exception occurred in the error call back function.

Explanation

An unhandled exception occurred in the exception handler function.

User Response

Modify the exception handler function code, adding a try/onexception block. In the onexception, add code to handle the exception thrown in the try:
	try
      //code to handle a ServiceInvocationException thrown by the call statement
    onException(exception AnyException)
      //code to handle an exception that occurs in the code processing the 
		 //thrown exception (the code in the try)
  end

Feedback