com.adventnet.management.transport
Class TransportException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.adventnet.management.transport.TransportException
- 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,
printStackTrace,
printStackTrace,
printStackTrace,
toString |
| Methods inherited from class java.lang.Object |
,
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait |
cause
java.lang.Throwable cause
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
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.
getCause
public java.lang.Throwable getCause()