NullPointerException is thrown by an application whenever it uses null, at a
place where it expects an object.
For example ,you may be trying to use a method of a object which is null, or
may be trying to modify some fields of that object.
In such cases it may throw a nullpointerexception.

A JSP  may be expecting a parameter to be passed from a previous JSP or may
be an HTML.
String BWavailable = request.getParameter("BWavailable");

However if this JSP does not receive any parameter by this name, then it
will throw a nullpointerException.

Hope this helps,

Vasudha


----- Original Message -----
From: Aaron Prohaska <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, July 26, 2000 2:35 PM
Subject: What does this error mean?


> Can someone tell me what this means?
>
> java.lang.NullPointerException:
> thanks,
>
> Aaron
>
>                 <<:::..:::...::: Aaron Prohaska :::..:::...:::>>
> VerdeSoft Internet Services
> mailto:[EMAIL PROTECTED]          http://www.verdesoft.net/
>
>
===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to