CRRUI1070E コールバック関数の処理中に例外 exception_name が発生しました。(An exception_name exception occurred while processing the call back function.)

説明

未処理例外がコールバック関数で発生しました。

ユーザーの処置

コールバック関数のコードを変更して、try/onException ブロックを追加します。onException で、次のコードを追加して、例外を処理します。
        try
            //code to handle the data returned from the service
        onException(exception AnyException)
            //code to handle an exception that occurs while processing the 
					//data returned from the service
        end

フィードバック