com.novell.service.session
Class InvalidUserNameException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.novell.service.session.SessionException
                    |
                    +--com.novell.service.session.InvalidUserNameException

public class InvalidUserNameException
extends SessionException

Thrown when a passed-in name is not valid in the context of the method throwing the exception.


Constructor Summary
InvalidUserNameException(java.lang.String s)
          Constructs an InvalidUserNameException with the specified detail message.
InvalidUserNameException(java.lang.String s, java.lang.Throwable rootException)
          Constructs an InvalidUserNameException with the specified detail message and a root-cause exception.
 
Methods inherited from class com.novell.service.session.SessionException
getRootCause, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidUserNameException

public InvalidUserNameException(java.lang.String s)
Constructs an InvalidUserNameException with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
s - The detail message describing the exception.

InvalidUserNameException

public InvalidUserNameException(java.lang.String s,
                                java.lang.Throwable rootException)
Constructs an InvalidUserNameException with the specified detail message and a root-cause exception. The root cause exception can be retrieved using the getRootCause() method.
Parameters:
s - The detail message describing the exception.
rootException - The root-cause exception.