Posted By:
zhaohua_meng
Posted On:
Monday, August 5, 2002 05:23 PM
You can always put a try {} catch (Exception e) {} block to
get a stack trace. The stack trace tells you exactly where the exception is thrown.
Example:
try {
//you code that throws exception
} catch (Exception e) {
e.printStackTrace();
}