Class UploadTimeoutException

  • All Implemented Interfaces:
    java.io.Serializable

    public class UploadTimeoutException
    extends UploadException
    Exception that gets thrown when there is a timeout while uploading data to a separate data management system (e.g. Galaxy).
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      UploadTimeoutException()
      Constructs a new UploadTimeoutException with no information.
      UploadTimeoutException​(java.lang.String message)
      Constructs a new UploadTimeoutException with the given message.
      UploadTimeoutException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new UploadTimeoutException with the given message and cause.
      UploadTimeoutException​(java.lang.Throwable cause)
      Constructs a new UploadTimeoutException 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

      • UploadTimeoutException

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

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

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

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