so, Ill have to do something like the following?
//ajax call..
{
onException: function(e) {
dsException =
"\n=================================================================
\n";
dsException += "Objeto: EXCEPTION";
dsException +=
"\n=================================================================
\n";
dsException += "
exception.name: ";
dsException +=
e.name
dsException += "\n";
dsException += "exception.number: ";
dsException += e.number;
dsException += "\n";
dsException += "exception.description: ";
dsException += e.description;
dsException +=
"\n**************************************************************************************************";
alert(dsException);
},
oh, and.
is " dsException += "Objeto: EXCEPTION";" spelled correct, or
did you mean Object: EXCEPTION ?
On Aug 7, 2:18 pm, "Leonardo Cidral" <
lcid...@gmail.com> wrote:
> I use it for see details of the exception...
>
> dsException =
> "\n=================================================================\n";
> dsException += "Objeto: EXCEPTION";
> dsException +=
> "\n=================================================================\n";
> dsException += "
exception.name: ";
> dsException +=
e.name
> dsException += "\n";
> dsException += "exception.number: ";
> dsException += e.number;
> dsException += "\n";
> dsException += "exception.description: ";
> dsException += e.description;
> dsException +=
> "\n**************************************************************************************************";
> alert(dsException);
>
> hugs,
> Leonardo Cidral
>
> 2008/8/7 revivedk <
Timsoren...@gmail.com>