com.vaadin.flow.server.frontend.
Class CompressionException
All Implemented Interfaces:
Exception for when there is a problem with compressing files.
Since:
24.3
Author:
Vaadin Ltd
See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCompressionException
(String message) Constructs a new compression exception with the specified detail message.
CompressionException
(String message, Throwable cause) Constructs a new compression exception with the specified detail message and the root cause throwable for the exception.
-
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CompressionException
Constructs a new compression exception with the specified detail message.
Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method. -
CompressionException
Constructs a new compression exception with the specified detail message and the root cause throwable for the exception.
Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method.cause
- throwable cause for the exception
-