<?php
/**
* UndefinedFieldException.class.php
*
* This file contains the definition of the UndefinedFieldException class.
*
* @package SolidWorks
* @author John Diamond <hide@address.com>
* @copyright John Diamond <hide@address.com>
* @license http://www.opensource.org/licenses/gpl-license.php GNU Public License
*/
/**
* UndefinedFieldException
*
* @package SolidWorks
* @author John Diamond <hide@address.com>
*/
class UndefinedFieldException extends FieldException {
/**
* @var string Error Message
*/
protected $message = "The %s field is undefined and was ignored (contents: %s).";
}
?>