Class ColumnProperty.NotNullableException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.vaadin.v7.data.util.sqlcontainer.ColumnProperty.NotNullableException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- ColumnProperty
@Deprecated public class ColumnProperty.NotNullableException extends java.lang.RuntimeException
Deprecated.An exception that signals that anull
value was passed to thesetValue
method, but the value of this property can not be set tonull
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotNullableException()
Deprecated.Constructs a newNotNullableException
without a detail message.NotNullableException(java.lang.String msg)
Deprecated.Constructs a newNotNullableException
with the specified detail message.NotNullableException(java.lang.Throwable cause)
Deprecated.Constructs a newNotNullableException
from another exception.
-
-
-
Constructor Detail
-
NotNullableException
public NotNullableException()
Deprecated.Constructs a newNotNullableException
without a detail message.
-
NotNullableException
public NotNullableException(java.lang.String msg)
Deprecated.Constructs a newNotNullableException
with the specified detail message.- Parameters:
msg
- the detail message
-
NotNullableException
public NotNullableException(java.lang.Throwable cause)
Deprecated.Constructs a newNotNullableException
from another exception.- Parameters:
cause
- The cause of the failure
-
-