Package akka.http.scaladsl.server
Class MalformedQueryParamRejection
- java.lang.Object
-
- akka.http.scaladsl.server.MalformedQueryParamRejection
-
- All Implemented Interfaces:
MalformedQueryParamRejection
,Rejection
,Rejection
,RejectionWithOptionalCause
,java.io.Serializable
,scala.Equals
,scala.Product
public final class MalformedQueryParamRejection extends java.lang.Object implements MalformedQueryParamRejection, RejectionWithOptionalCause, scala.Product, java.io.Serializable
Rejection created by parameter filters. Signals that the request was rejected because a query parameter could not be interpreted.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MalformedQueryParamRejection(java.lang.String parameterName, java.lang.String errorMsg, scala.Option<java.lang.Throwable> cause)
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract static R
apply(T1 v1, T2 v2, T3 v3)
scala.Option<java.lang.Throwable>
cause()
java.lang.String
errorMsg()
java.lang.String
parameterName()
static java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface akka.http.javadsl.server.MalformedQueryParamRejection
getCause
-
Methods inherited from interface scala.Product
productArity, productElement, productElementName, productElementNames, productIterator, productPrefix
-
Methods inherited from interface akka.http.scaladsl.server.RejectionWithOptionalCause
getCause
-
-
-
-
Method Detail
-
apply
public abstract static R apply(T1 v1, T2 v2, T3 v3)
-
toString
public static java.lang.String toString()
-
parameterName
public java.lang.String parameterName()
- Specified by:
parameterName
in interfaceMalformedQueryParamRejection
-
errorMsg
public java.lang.String errorMsg()
- Specified by:
errorMsg
in interfaceMalformedQueryParamRejection
-
cause
public scala.Option<java.lang.Throwable> cause()
- Specified by:
cause
in interfaceRejectionWithOptionalCause
-
-