The following code returns me an error saying: "constructor call must be the first statment in a constructor."
I dont get it. The constructor in my code is the first statement. What am I doing wrong?
public class labelsAndIcons extends JFrame
{
public labelFrame()
{
super( "Testing JLabel" );
}
}