|
Posted by Jerry Stuckle on 10/10/05 06:53
Seamus M wrote:
> It seems when I use the getLine() method of the Exception class, it returns
> the line number of the "throw new Exception" statement and not the line
> number where the error actually occured in the source file. Am I doing
> something wrong?
>
> - Seamus
>
>
How is the exception supposed to know where the error occurred? It
could have been anything - bad return code, incorrect data, whatever.
But in all cases, it's something you had to detect. This might have
been many lines of code before you actually threw the exception, or even
in a different (included) file.
All the exception can tell is where you threw it.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|