>
> try {
> ...
> } catch (ex) {
>    return;
> }
>

Another thing that is handy is to use the properties of the exception
object for cleaner debugging.

Ex:

try{ . . . . }

catch(e){ dump("Error: "+e.name+" "+e.message); return null }

This gives the exception name and the message from the exception.
It is a little easier to read instead of dump(e);

--pete



Reply via email to