Flash Builder 4.6でのデバッグ中に、次のポップアップが表示されます。
Try catch
ブロックはこの例外をキャッチせず、リリースでの実行時にアプリケーションは例外をスローしません。
これは今まで見たことがありません。他の誰かがこれを経験しましたか?
Flash Builder 4.6でのデバッグ中に、次のポップアップが表示されます。
Try catch
ブロックはこの例外をキャッチせず、リリースでの実行時にアプリケーションは例外をスローしません。
これは今まで見たことがありません。他の誰かがこれを経験しましたか?
この例外は、アプリケーションによってスローされません。これは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.