Class CmsUploadException

  • All Implemented Interfaces:
    java.io.Serializable

    public class CmsUploadException
    extends java.lang.RuntimeException
    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:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      CmsUploadException​(java.lang.String message)
      Public constructor that sets the error message.
      CmsUploadException​(java.lang.String message, java.lang.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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • CmsUploadException

        public CmsUploadException​(java.lang.String message)
        Public constructor that sets the error message.

        Parameters:
        message - the message
      • CmsUploadException

        public CmsUploadException​(java.lang.String message,
                                  java.lang.Throwable cause)
        Public constructor that sets the error message and the cause.

        Parameters:
        message - the message
        cause - the cause