Java Application "Killed"
I wrote an application that opens up a series of large data files, jumps through the files to determine if they are of correct format and output any errors associated with the data contained within the files. To speed up execution of the program, I designed the program to open up each folder as a separate thread and then sequentially analyze the files.
For the most part, the program executes without any problems however, every once in awhile I get a data set that causes my program to terminate prematurely. The only error message I get displayed on my terminal is "Killed". I am running Java 5.0 and using RHEL4. Can anyone shed any insight on to what "Killed" means and maybe why am I getting that error? I just need a starting point so I know what to look for in the debugger but "Killed" doesn't exactly tell me much.
Thanks.

