0

i am executing some jar file in my tibco process deployed on jboss server. so my question is if any of the jar file errors out how can i know which line or method of the jar file errored out?

2 Answers2

0

If the jar has source code attached then you could find out exactly where the error lies.

JARs themselves have exception handling setup, which then prints the Error messages.

sa_nyc
  • 971
  • 1
  • 13
  • 23
0

Your question is exceptionally vague, but in general, errors in Java are handled using Exceptions, so you should look at your log files for a stacktrace which will give you all of the class and line information about where the error occurred.

Adam Batkin
  • 51,711
  • 9
  • 123
  • 115