JXTA

net.jxta.exception
Class ProtocolNotSupportedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by net.jxta.exception.JxtaException
              extended by net.jxta.exception.ProtocolNotSupportedException
All Implemented Interfaces:
Serializable

public class ProtocolNotSupportedException
extends JxtaException

Signals that an error occurred while attempting to access an endpoint protocol

See Also:
Serialized Form

Constructor Summary
ProtocolNotSupportedException()
          Constructs an Exception with no specified detail message.
ProtocolNotSupportedException(String message)
          Constructs an Exception with the specified detail message.
ProtocolNotSupportedException(String message, Throwable cause)
          Constructs a new exception with the specified detail message and cause.
ProtocolNotSupportedException(Throwable cause)
          Constructs a new exception with the specified detail message and cause.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ProtocolNotSupportedException

public ProtocolNotSupportedException()
Constructs an Exception with no specified detail message.


ProtocolNotSupportedException

public ProtocolNotSupportedException(String message)
Constructs an Exception with the specified detail message.

Parameters:
message - the detail message.

ProtocolNotSupportedException

public ProtocolNotSupportedException(Throwable cause)
Constructs a new exception with the specified detail message and cause.

Parameters:
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

ProtocolNotSupportedException

public ProtocolNotSupportedException(String message,
                                     Throwable cause)
Constructs a new exception with the specified detail message and cause.

Parameters:
message - message the detail message
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)

JXSE