org.simpleframework.transport
Class TransportException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.simpleframework.transport.TransportException
- All Implemented Interfaces:
- Serializable
public class TransportException
- extends IOException
The TransportException object is thrown when there
is a problem with the transport. Typically this is done thrown if
there is a problem reading or writing to the transport.
- Author:
- Niall Gallagher
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
TransportException
public TransportException(String message)
- Constructor for the
TransportException object. If
there is a problem sending or reading from a transport then it
will throw a transport exception to report the error.
- Parameters:
message - this is the message associated with the error
TransportException
public TransportException(String message,
Throwable cause)
- Constructor for the
TransportException object. If
there is a problem sending or reading from a transport then it
will throw a transport exception to report the error.
- Parameters:
message - this is the message associated with the errorcause - this is the cause of the producer exception
Copyright © 2014. All Rights Reserved.