Package de.xima.fc.http
Class ContentDispositionParseException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.xima.fc.http.ContentDispositionParseException
-
- All Implemented Interfaces:
Serializable
public final class ContentDispositionParseException extends Exception
Exception thrown byContentDisposition
when a value cannot be parsed.- Since:
- 8.0.2
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContentDispositionParseException(String message)
Creates a new parse exception with the given details.ContentDispositionParseException(String message, Throwable cause)
Creates a new parse exception with the given details.ContentDispositionParseException(Throwable cause)
Creates a new parse exception with the given details.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ContentDispositionParseException
public ContentDispositionParseException(String message)
Creates a new parse exception with the given details.- Parameters:
message
- A detailed message describing the error.
-
ContentDispositionParseException
public ContentDispositionParseException(String message, Throwable cause)
Creates a new parse exception with the given details.- Parameters:
message
- A detailed message describing the error.cause
- The underlying cause of the error.
-
ContentDispositionParseException
public ContentDispositionParseException(Throwable cause)
Creates a new parse exception with the given details.- Parameters:
cause
- The underlying cause of the error.
-
-