<?php
/**
* FormCanceledException.class.php
*
* This file contains the definition of the FormCanceledException 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
*/
/**
* FormCanceledException
*
* Thrown by the Form process() method whenever a cancel field is encountered.
*
* @package SolidWorks
* @author John Diamond <hide@address.com>
*/
class FormCanceledException extends SWException {
/**
* @var string The internal error message for this exception
*/
protected $message = "Form canceled";
}
?>