Hi, I have a java program. In one class, I have a method that creates another class. Buy my program stops running just before the line to create this new class. I have a print statement before and after the line of code and it prints the statement before the call. I also have a print statement in the very first line of the constructor of the other class, which is NOT being printed. I was thinking that it might be something to do with buffering that it wasn't printing the first line, so I also put a System.exit(1); If I comment out the line creating the new class, the program runs. It gives no error messages and program just freezes. Any help would be greatly appreciated. Thanks