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:
Serializable
- Enclosing class:
- ColumnProperty
@Deprecated public class ColumnProperty.NotNullableException extends RuntimeException
Deprecated.An exception that signals that anullvalue was passed to thesetValuemethod, but the value of this property can not be set tonull.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotNullableException()Deprecated.Constructs a newNotNullableExceptionwithout a detail message.NotNullableException(String msg)Deprecated.Constructs a newNotNullableExceptionwith the specified detail message.NotNullableException(Throwable cause)Deprecated.Constructs a newNotNullableExceptionfrom 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()
Deprecated.Constructs a newNotNullableExceptionwithout a detail message.
-
NotNullableException
public NotNullableException(String msg)
Deprecated.Constructs a newNotNullableExceptionwith the specified detail message.- Parameters:
msg- the detail message
-
NotNullableException
public NotNullableException(Throwable cause)
Deprecated.Constructs a newNotNullableExceptionfrom another exception.- Parameters:
cause- The cause of the failure
-
-