edu.wpi.prc.server
Class InvalidUserException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by edu.wpi.prc.server.InvalidUserException
All Implemented Interfaces:
java.io.Serializable

public class InvalidUserException
extends java.lang.Exception

Indicates that a user could not be found in the database.

Author:
James Baldassari
See Also:
Serialized Form

Field Summary
private  java.lang.String message
           
private static long serialVersionUID
           
 
Constructor Summary
InvalidUserException()
          Default constructor.
InvalidUserException(java.lang.String message)
          Constructor specifying an error message.
 
Method Summary
 java.lang.String toString()
          Returns the error message for this Exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

message

private java.lang.String message
Constructor Detail

InvalidUserException

public InvalidUserException()
Default constructor.


InvalidUserException

public InvalidUserException(java.lang.String message)
Constructor specifying an error message.

Parameters:
message - The error message.
Method Detail

toString

public java.lang.String toString()
Returns the error message for this Exception.

Overrides:
toString in class java.lang.Throwable