Source for file ValidationFailed.php
Documentation is available at ValidationFailed.php
* $Id: ValidationFailed.php 521 2007-01-05 13:29:36Z heltem $
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* This software consists of voluntary contributions made by many individuals
* and is licensed under the LGPL. For more information please see
* <http://propel.phpdb.org>.
* Simple class that serves as a container for any information about a failed validation.
* Currently this class stores the qualified column name (e.g. tablename.COLUMN_NAME) and
* the message that should be displayed to the user.
* An array of these objects will be returned by BasePeer::doValidate() if validation
* @author Hans Lellelid <hans@xmpl.org>
* @version $Revision: 521 $
* @package propel.validator
* @see BasePeer::doValidate()
/** Column name in tablename.COLUMN_NAME format */
/** Message to display to user. */
/** Validator object that caused this to fail. */
* Construct a new ValidationFailed object.
* @param string $colname Column name.
* @param string $message Message to display to user.
* @param object $validator The Validator that caused this column to fail.
public function __construct($colname, $message, $validator = null)
$this->colname = $colname;
$this->message = $message;
$this->validator = $validator;
* @return string Qualified column name (tablename.COLUMN_NAME)
* Set the message for the validation failure.
* Gets the message for the validation failure.
* Set the validator object that caused this to fail.
* Gets the validator object that caused this to fail.
* "magic" method to get string represenation of object.
* Maybe someday PHP5 will support the invoking this method automatically
* on (string) cast. Until then it's pretty useless.
|