com.novell.nxpe
Class NxpeException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.novell.nxpe.NxpeException
All Implemented Interfaces:
java.io.Serializable

public class NxpeException
extends java.lang.Exception

Extends the Exception class.

Since:
NXPE1.0
Author:
Paladin Team
See Also:
Serialized Form

Constructor Summary
NxpeException()
          Throws an exception with no additional information about the cause.
NxpeException(NxpeResult result)
          Throws an exception with a result from the NxpeResult class.
NxpeException(NxpeResult result, java.lang.String message)
          Throws an exception with a result and a message.
NxpeException(NxpeResult result, java.lang.String message, java.lang.Throwable cause)
          Throws an exception with a result, message, and a cause.
NxpeException(NxpeResult result, java.lang.Throwable cause)
          Throws an exception with a result and a cause.
NxpeException(java.lang.String message)
          Throws an exception with a message.
NxpeException(java.lang.String message, java.lang.Throwable cause)
          Throws an exception with a message and a cause.
NxpeException(java.lang.Throwable cause)
          Throws an exception with a cause.
 
Method Summary
 NxpeResult getResult()
          Retrieves the value of the NxpeResult object.
 
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

NxpeException

public NxpeException()
Throws an exception with no additional information about the cause.


NxpeException

public NxpeException(java.lang.String message)
Throws an exception with a message.

Parameters:
message - The string message that explains the cause.

NxpeException

public NxpeException(java.lang.String message,
                     java.lang.Throwable cause)
Throws an exception with a message and a cause.

Parameters:
message - The string message that explains the cause.
cause - The cause (which is saved for later retrieval by the getCause method).

NxpeException

public NxpeException(NxpeResult result)
Throws an exception with a result from the NxpeResult class.

Parameters:
result - The result defined in the NxpeResult class.

NxpeException

public NxpeException(NxpeResult result,
                     java.lang.Throwable cause)
Throws an exception with a result and a cause.

Parameters:
result - The result defined in the NxpeResult class.
cause - The cause (which is saved for later retrieval by the getCause method).

NxpeException

public NxpeException(NxpeResult result,
                     java.lang.String message)
Throws an exception with a result and a message.

Parameters:
result - The result defined in the NxpeResult class.
message - The string message that explains the cause.

NxpeException

public NxpeException(NxpeResult result,
                     java.lang.String message,
                     java.lang.Throwable cause)
Throws an exception with a result, message, and a cause.

Parameters:
result - The result defined in the NxpeResult class.
message - The string message that explains the cause.
cause - The cause (which is saved for later retrieval by the getCause method).

NxpeException

public NxpeException(java.lang.Throwable cause)
Throws an exception with a cause.

Parameters:
cause - The cause (which is saved for later retrieval by the getCause method).
Method Detail

getResult

public NxpeResult getResult()
Retrieves the value of the NxpeResult object.



Copyright © 2005-2009, 2012 Novell,Inc. All Rights Reserved.