On Tue, 09 Mar 2004 14:05:17 +0100, Fabrizio Giustina <[EMAIL PROTECTED]> wrote:

About the JspException, DisplayTag are using the "public
JspException(String message, Throwable rootCause)"
constructor that I think that it's servlet 2.3+ compatible


Displaytag use its own NestableJspException, which extends JspException adding nesting functionalities, it has nothing to do with standard j2ee api
fabrizio

Class TableTag, method writeExport:


            try
            {
                out.clear();
            }
            catch (IOException e)
            {
                throw new JspException("Unable to reset response.", e);
            }

[...]

            try
            {
                out.write(exportString);
                out.flush();
            }
            catch (IOException e)
            {
                throw new JspException("Unable to write to out.", e);
            }


-- Rafael Muńoz Vega email: [EMAIL PROTECTED]

"My kung-fu is stronger than yours"



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click
_______________________________________________
displaytag-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/displaytag-devel

Reply via email to