Class UploadConnectionException

  • All Implemented Interfaces:
    java.io.Serializable

    public class UploadConnectionException
    extends UploadException
    Thrown when a connection to a remote site for uploading data fails.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      UploadConnectionException()
      Constructs a new UploadConnectionException with no information.
      UploadConnectionException​(java.lang.String message)
      Constructs a new UploadConnectionException with the given message.
      UploadConnectionException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new UploadConnectionException with the given message and cause.
      UploadConnectionException​(java.lang.Throwable cause)
      Constructs a new UploadConnectionException with the given cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, 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

      • UploadConnectionException

        public UploadConnectionException()
        Constructs a new UploadConnectionException with no information.
      • UploadConnectionException

        public UploadConnectionException​(java.lang.String message,
                                         java.lang.Throwable cause)
        Constructs a new UploadConnectionException with the given message and cause.
        Parameters:
        message - The message explaining the error.
        cause - The cause of this message.
      • UploadConnectionException

        public UploadConnectionException​(java.lang.String message)
        Constructs a new UploadConnectionException with the given message.
        Parameters:
        message - The message explaining the error.
      • UploadConnectionException

        public UploadConnectionException​(java.lang.Throwable cause)
        Constructs a new UploadConnectionException with the given cause.
        Parameters:
        cause - The cause of this error.