All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class WebSite.Servlet.UserException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----WebSite.Servlet.UserException

public class UserException
extends RuntimeException

An exception has been thrown by the programmer. If not caught, this results in a 500 Server Error response with a stack trace and an optional detail message being sent back to the client.


Constructor Index

 o UserException()
Constructs a UserException with no detail message.
 o UserException(String)
Constructs a UserException with the specified detail message.

Constructors

 o UserException
 public UserException()
Constructs a UserException with no detail message. A detail message is a String that describes this particular exception.

 o UserException
 public UserException(String s)
Constructs a UserException with the specified detail message. A detail message is a String that describes this particular exception.

Parameters:
s - the String containing a detail message

All Packages  Class Hierarchy  This Package  Previous  Next  Index