Class InvalidContentTypeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.vaadin.external.apache.commons.fileupload2.FileUploadException
com.vaadin.external.apache.commons.fileupload2.pub.InvalidContentTypeException
- All Implemented Interfaces:
Serializable
Thrown to indicate that the request is not a multipart request.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs aInvalidContentTypeExceptionwith no detail message.InvalidContentTypeException(String message) Constructs anInvalidContentTypeExceptionwith the specified detail message.InvalidContentTypeException(String msg, Throwable cause) Constructs anInvalidContentTypeExceptionwith the specified detail message and cause. -
Method Summary
Methods inherited from class com.vaadin.external.apache.commons.fileupload2.FileUploadException
getCause, printStackTrace, printStackTraceMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidContentTypeException
public InvalidContentTypeException()Constructs aInvalidContentTypeExceptionwith no detail message. -
InvalidContentTypeException
Constructs anInvalidContentTypeExceptionwith the specified detail message.- Parameters:
message- The detail message.
-
InvalidContentTypeException
Constructs anInvalidContentTypeExceptionwith the specified detail message and cause.- Parameters:
msg- The detail message.cause- the original cause- Since:
- 1.3.1
-