Thread: Exit code 255
View Single Post

   
  #2 (permalink)  
Old 01-05-2008, 07:21 AM
Laurenz Albe
 
Posts: n/a
Default Re: Exit code 255

mike.whorley@coda.com wrote:
> We have a Java app the is falling over on Aix returning 'Exit Code 255'
> - is there a way to find out what is causing this ?
>
> My gut feel is that it could be memory related, is there more
> information available about what 255 actually means ?...i'm hoping it's
> not just a generic exit on fail.


Is the Java virtual machine up and running when the error occurs?
I mean, does the JVM fail to start or does it terminate after some time
of operation, returning the exit code?

Are there any output, stacktraces, core files etc?

Please give more relevant information!

A Java program can return an arbitraty return code to the operating
system by calling the System.exit(int) method.

If that is what happens, you will have to ask the application programmer.

Yours,
Laurenz Albe
Reply With Quote