Package org.opencms.ade.upload
Class CmsUploadException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.opencms.ade.upload.CmsUploadException
- All Implemented Interfaces:
Serializable
This exception makes it possible to handle expected upload errors in another way than
unexpected errors.
It is supposed to be used when an expected upload exception occurred.
For example we can send a message like "file size limit exceeded" so the user knows that he selected a file is responsible for the error. In other cases it does not make sense to confuse the user with error information he won't understand like an encoding error, ...
- Since:
- 8.0.0
- See Also:
-
Constructor Summary
ConstructorDescriptionCmsUploadException
(String message) Public constructor that sets the error message.CmsUploadException
(String message, Throwable cause) Public constructor that sets the error message and the cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CmsUploadException
Public constructor that sets the error message.- Parameters:
message
- the message
-
CmsUploadException
Public constructor that sets the error message and the cause.- Parameters:
message
- the messagecause
- the cause
-