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.data.
Class Property.ConversionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.vaadin.data.Property.ConversionException
All Implemented Interfaces:
Enclosing interface:
- extends RuntimeException
public static class Property.ConversionException
An exception that signals that the value passed to the
setValue
method couldn't be converted to the native type of
the Property.
Since:
3.0
Version:
6.8.18
Author:
Vaadin Ltd
See Also:
Constructor Summary | |
---|---|
Property.ConversionException()
Constructs a new ConversionException without a detail
message. |
|
Property.ConversionException(String msg)
Constructs a new ConversionException with the specified
detail message. |
|
Property.ConversionException(String message,
Throwable cause)
Constructs a new ConversionException with the specified
detail message and cause. |
|
Property.ConversionException(Throwable cause)
Constructs a new ConversionException from another
exception. |
Method Summary |
---|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
Property.ConversionException
public Property.ConversionException()
Constructs a new ConversionException
without a detail
message.
Property.ConversionException
public Property.ConversionException(String msg)
- Parameters:
msg
- the detail message
Constructs a new ConversionException
with the specified
detail message.
Property.ConversionException
public Property.ConversionException(Throwable cause)
- Parameters:
cause
- The cause of the the conversion failure
Constructs a new ConversionException
from another
exception.
Property.ConversionException
public Property.ConversionException(String message,
Throwable cause)
- Parameters:
message
- the detail messagecause
- The cause of the the conversion failure
Constructs a new ConversionException
with the specified
detail message and cause.