An internal build error has occurred (What this error means)
Friday, February 13th, 2009Becouse I have answered many times to this question and it took me a lot of time to find what this error means I decided to write a post with the solution (in my case) to help you save some time.
So why Flex Builder display this this error ? Turns out if you create switch statement with no body in Flex Builder this unhelpful error is displayed. To solve your problem all you have to do is to add at least de “default” to your switch :
switch
{
default:
}
And this is all :D.
Obs: This is just one cause why Flex Builder displays this error.
