CRRUI1072E エラー・コールバック関数で例外 exception_name が発生しました。(An exception_name exception occurred in the error call back function.)

説明

未処理例外が例外ハンドラー関数で発生しました。

ユーザーの処置

例外ハンドラー関数のコードを変更して、try/onexception ブロックを追加します。onexception で、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

フィードバック