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.util.sqlcontainer.
Class ColumnProperty.NotNullableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.vaadin.data.util.sqlcontainer.ColumnProperty.NotNullableException
-
All Implemented Interfaces:
Enclosing class:
public class ColumnProperty.NotNullableException extends RuntimeException
An exception that signals that a
null
value was passed to thesetValue
method, but the value of this property can not be set tonull
.See Also:
-
-
Constructor Summary
Constructors Constructor Description NotNullableException()
Constructs a new
NotNullableException
without a detail message.NotNullableException(String msg)
Constructs a new
NotNullableException
with the specified detail message.NotNullableException(Throwable cause)
Constructs a new
NotNullableException
from another exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NotNullableException
public NotNullableException()
Constructs a new
NotNullableException
without a detail message.
-
NotNullableException
public NotNullableException(String msg)
Constructs a new
NotNullableException
with the specified detail message.Parameters:
msg
- the detail message
-
NotNullableException
public NotNullableException(Throwable cause)
Constructs a new
NotNullableException
from another exception.Parameters:
cause
- The cause of the failure
-
-