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:
  • Constructor Details

    • 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 error
      cause - this is the cause of the producer exception