com.novell.service.session.xplat
Class NotConnectionOwnerException

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

public class NotConnectionOwnerException
extends SessionException

Thrown when a connection is already owned by a different provider.


Constructor Summary
NotConnectionOwnerException(java.lang.String s)
          Constructs a NotConnectionOwnerException with the specified detail message.
NotConnectionOwnerException(java.lang.String s, java.lang.Throwable rootException)
          Constructs a NotConnectionOwnerException with a specified detail message and a root-cause exception.
NotConnectionOwnerException(java.lang.Throwable rootException)
          Constructs a NotConnectionOwnerException with 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

NotConnectionOwnerException

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

NotConnectionOwnerException

public NotConnectionOwnerException(java.lang.Throwable rootException)
Constructs a NotConnectionOwnerException with a root-cause exception. The root cause exception can be retrieved using getRootCause().
Parameters:
rootException - The root-cause exception.

NotConnectionOwnerException

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