Class MultipartException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.web.multipart.MultipartException
- All Implemented Interfaces:
 Serializable
- Direct Known Subclasses:
 MaxUploadSizeExceededException
Exception thrown when multipart resolution fails.
- Since:
 - 29.09.2003
 - Author:
 - Trevor D. Cook, Juergen Hoeller
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionMultipartException(String msg) Constructor for MultipartException.MultipartException(String msg, Throwable cause) Constructor for MultipartException. - 
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString 
- 
Constructor Details
- 
MultipartException
Constructor for MultipartException.- Parameters:
 msg- the detail message
 - 
MultipartException
Constructor for MultipartException.- Parameters:
 msg- the detail messagecause- the root cause from the multipart parsing API in use
 
 -