Class FileUploadBase.SizeLimitExceededException

    • Constructor Summary

      Constructors 
      Constructor Description
      SizeLimitExceededException()
      Deprecated.
      1.2 Replaced by SizeLimitExceededException(String, long, long)
      SizeLimitExceededException​(java.lang.String message)
      Deprecated.
      1.2 Replaced by #SizeLimitExceededException(String, long, long)
      SizeLimitExceededException​(java.lang.String message, long actual, long permitted)
      Constructs a SizeExceededException with the specified detail message, and actual and permitted sizes.
    • Constructor Detail

      • SizeLimitExceededException

        @Deprecated
        public SizeLimitExceededException()
        Deprecated.
        1.2 Replaced by SizeLimitExceededException(String, long, long)
      • SizeLimitExceededException

        @Deprecated
        public SizeLimitExceededException​(java.lang.String message)
        Deprecated.
        1.2 Replaced by #SizeLimitExceededException(String, long, long)
        Parameters:
        message - The exceptions detail message.
      • SizeLimitExceededException

        public SizeLimitExceededException​(java.lang.String message,
                                          long actual,
                                          long permitted)
        Constructs a SizeExceededException with the specified detail message, and actual and permitted sizes.
        Parameters:
        message - The detail message.
        actual - The actual request size.
        permitted - The maximum permitted request size.