netapp.manage
Class NaProtocolException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bynetapp.manage.NaException
              extended bynetapp.manage.NaProtocolException
All Implemented Interfaces:
java.io.Serializable

public class NaProtocolException
extends NaException

Thrown to indicate that there was a protocol problem. It means that the server responded with something that we couldn't understand. Trying the request again will probably have the same result.

See Also:
Serialized Form

Constructor Summary
NaProtocolException(java.lang.String message)
          Constructs a new NaProtocolException with the specified detail message.
NaProtocolException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new NaProtocolException with the specified detail message and cause.
NaProtocolException(java.lang.Throwable cause)
          Constructs a new NaProtocolException with the specified cause.
 
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

NaProtocolException

public NaProtocolException(java.lang.String message)
Constructs a new NaProtocolException with the specified detail message.

Parameters:
message - the detail message.

NaProtocolException

public NaProtocolException(java.lang.String message,
                           java.lang.Throwable cause)
Constructs a new NaProtocolException with the specified detail message and cause.

Parameters:
message - the detail message.
cause - the cause.

NaProtocolException

public NaProtocolException(java.lang.Throwable cause)
Constructs a new NaProtocolException with the specified cause.

Parameters:
cause - the cause.