What are the exceptions thrown by Servlets?

Answers were Sorted based on User's Feedback



What are the exceptions thrown by Servlets?..

Answer / baskar

Servlet Exception and IOException

Is This Answer Correct ?    13 Yes 2 No

What are the exceptions thrown by Servlets?..

Answer / tulasivani

The Expceptions thrown by the servlet can be in two
exception classes

1.Servlet Exception

public ServletException();
public ServletException(String message);
public Throwable getRootCause()


2.Servlet Unavailable Exception

public class UnavailableException extends ServletException

public UnavailableException(String message);
public UnavailableException(String message, int seconds);

Is This Answer Correct ?    11 Yes 3 No

What are the exceptions thrown by Servlets?..

Answer / sachin g.

1. ServletException
2. IOException
3. ClassNotFoundException
4. SQLException

Is This Answer Correct ?    7 Yes 7 No

What are the exceptions thrown by Servlets?..

Answer / madhuri

servlet can thrown any type of unchecked Exception

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Servlets Interview Questions

Explain the difference between get and post method in servlet?

0 Answers  


What do you mean by httpservlet and how it is different from the genericservlet?

0 Answers  


How can we achieve transport layer security for our web application?

0 Answers  


What are cookies and how will you use them?

3 Answers  


What is the life cycle of a servlet?

1 Answers  






How do you find out what client machine is making a request to your servlet

0 Answers  


How do you design microservices?

0 Answers  


What methodology can be followed to store more number of objects in a remote server?

0 Answers  


What is webservlet?

0 Answers  


How servlet is created?

0 Answers  


What is the main purpose of java servlets?

0 Answers  


Why is init() method is used in servlets?

0 Answers  


Categories