‘An internal build error has occurred’
That’s the description of a problem Flex Builder just presented me with. Not too descriptive is it? With so little to go on, I assumed there was some file corruption somewhere and hunted high and low to find it, to the point of checking my whole project out from scratch. Nothing helped.
I found the problem eventually though. It was this:
switch (someValue){
}That’s all: an empty, half-finished switch statement!
I’d recommend making sure you finish coding your switch statements before casually hitting ’save’ if you don’t want to waste time like I just have.