We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.server.communication.rpc.
Class RpcDecodeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.vaadin.flow.server.communication.rpc.RpcDecodeException
-
All Implemented Interfaces:
public class RpcDecodeException extends Exception
Thrown if RPC method argument cannot be decoded to the required type.
It may happen when a decoder supports (applicable) to the type of argument and the required type but the argument value cannot be converted to the type (e.g. "1.1" can't be converted to
Integer
even though theStringToNumberDecoder
is able to decode aString
toInteger
).Since:
1.0
Author:
Vaadin Ltd
See Also:
-
-
Constructor Summary
Constructors Constructor and Description RpcDecodeException(String message)
Creates a new instance with the given
message
.RpcDecodeException(Throwable cause)
Creates a new instance with the given
cause
.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
RpcDecodeException
public RpcDecodeException(String message)
Creates a new instance with the given
message
.Parameters:
message
- the exception messsage
-
RpcDecodeException
public RpcDecodeException(Throwable cause)
Creates a new instance with the given
cause
.Parameters:
cause
- the cause of the failed convertion
-
-