Class FileUploadException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.commons.fileupload.FileUploadException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
FileCountLimitExceededException, FileUploadBase.InvalidContentTypeException, FileUploadBase.IOFileUploadException, FileUploadBase.SizeException, FileUploadBase.UnknownSizeException

public class FileUploadException extends Exception
Exception for errors encountered while processing the request.
See Also:
  • Constructor Details

    • FileUploadException

      Constructs a new FileUploadException without message.
    • FileUploadException

      Constructs a new FileUploadException with specified detail message.
      Parameters:
      msg - the error message.
    • FileUploadException

      public FileUploadException(String msg, Throwable cause)
      Creates a new FileUploadException with the given detail message and cause.
      Parameters:
      msg - The exceptions detail message.
      cause - The exceptions cause.
  • Method Details