0

Flash Builder 4.6でのデバッグ中に、次のポップアップが表示されます。

ここに画像の説明を入力

Try catchブロックはこの例外をキャッチせず、リリースでの実行時にアプリケーションは例外をスローしません。

これは今まで見たことがありません。他の誰かがこれを経験しましたか?

4

1 に答える 1

1

この例外は、アプリケーションによってスローされません。これはEclipse(Flash Builder の) 例外です。私たちのようなプログラマーによっても書かれているので、いくつかのバグがあります:)

If it's frequent and you want to get rid of it, I suggest going to your workspace and deleting the .metadata folder, but be aware that it will delete all your configuration of the Flash Builder IDE.

Only try the above method if restarting Flash Builder doesn't help.

More on the exception thrown:

First of all, exceptions (Errors in case of Actionscript) which are thrown by your code do not show up in a separate Flash Builder window, that's how you can tell wether it is yours or IDEs.

Other than that if you look closely at the exception it says java.lang.ArrayIndexOutOfBoundsException, that's a Java exception, not an Actionscript one.

于 2013-07-09T07:08:43.177 に答える