<?php
 
/**
 
 * @package DATA
 
 */
 
 
/**
 
 * An exception thrown when trying to null a not nullable sql field.
 
 */
 
class DATA_NotNullable extends DATA_SQLTypeConstraintFailed {
 
    /**
 
     * Constructor.
 
     */
 
    public function __construct() {
 
        parent::__construct("SQL field cannot hold a null value");
 
    }
 
}
 
?>
 
 
 |