netapp.manage
Class NaException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended bynetapp.manage.NaException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
NaAPIFailedException, NaAuthenticationException, NaProtocolException

public class NaException
extends java.lang.Exception

Thrown when there is a problem invoking an API.

See Also:
Serialized Form

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

NaException

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

Parameters:
message - the detail message.

NaException

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

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

NaException

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

Parameters:
cause - the cause.