com.adventnet.management.transport
Class TransportException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.adventnet.management.transport.TransportException
All Implemented Interfaces:
java.io.Serializable

public class TransportException
extends java.lang.Exception

Exception thrown when an Error occurs in the Tranport Provider Classes

See Also:
Serialized Form

Field Summary
(package private)  java.lang.Throwable cause
           
 
Constructor Summary
TransportException()
          Constructs an TransportExceptionwith no detail message.
TransportException(java.lang.String str)
          Constructs an TransportExceptionwith the specified detail message.
 
Method Summary
 java.lang.Throwable getCause()
           
 java.lang.Throwable initCause(java.lang.Throwable cause)
          Since initCause is not present in the versions prior to jdk1.4 we have included this method.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

cause

java.lang.Throwable cause
Constructor Detail

TransportException

public TransportException()
Constructs an TransportExceptionwith no detail message. A detail message is a String that describes this particular exception.


TransportException

public TransportException(java.lang.String str)
Constructs an TransportExceptionwith the specified detail message. A detail message is a String that describes this particular exception.

Parameters:
s - the detail message
Method Detail

initCause

public java.lang.Throwable initCause(java.lang.Throwable cause)
Since initCause is not present in the versions prior to jdk1.4 we have included this method. To be deprecated in the future release.

Overrides:
initCause in class java.lang.Throwable

getCause

public java.lang.Throwable getCause()
Overrides:
getCause in class java.lang.Throwable