netapp.manage
Class NaError

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Error
          extended bynetapp.manage.NaError
All Implemented Interfaces:
java.io.Serializable

public class NaError
extends java.lang.Error

Thrown when there is a serious problem with the library.

See Also:
Serialized Form

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

NaError

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

Parameters:
message - the detail message.

NaError

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

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

NaError

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

Parameters:
cause - the cause.