Package akka.http.javadsl.server
Interface MalformedRequestContentRejection
-
- All Superinterfaces:
Rejection
- All Known Implementing Classes:
MalformedRequestContentRejection
public interface MalformedRequestContentRejection extends Rejection
Rejection created by unmarshallers. Signals that the request was rejected because unmarshalling failed with an error that wasn't anIllegalArgumentException
. Usually that means that the request content was not of the expected format. Note that semantic issues with the request content (e.g. because some parameter was out of range) will usually trigger aValidationRejection
instead.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Throwable
getCause()
java.lang.String
message()
-