Can anyone help me out with a snippet of code? On my Exception.html/.page I 
have a simple @Insert with getError(). Here's my code, but it doesn't provide a 
nice traceback :(


public String getError()
  {
    ExceptionDescription[] Errors = getExceptions();
    String err = "";
    
    for (int i = 0; i < Errors.length; i++)
      err += Errors[i].getMessage() + "<br>";

  return err;
}

Any ideas?

Thanks,
Greg

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to