Class FileUploadException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.tomcat.util.http.fileupload.FileUploadException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
FileCountLimitExceededException, InvalidContentTypeException, IOFileUploadException, SizeException

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

    • FileUploadException

      public FileUploadException()
      Constructs a new FileUploadException without message.
    • FileUploadException

      public FileUploadException(String msg)
      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.
    • FileUploadException

      public FileUploadException(Throwable cause)
      Creates a new FileUploadException with the given cause.
      Parameters:
      cause - The exceptions cause.