<?php
/**
* InvalidDateInputFormatException.class.php
*
* This file contains the definition of the InvalidDateInputFormatException 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
*/
/**
* InvalidDateInputFormatException
*
* @package SolidWorks
* @author John Diamond <hide@address.com>
*/
class InvalidDateInputFormatException extends SWException {
/**
* Invalid Date Input Format Exception Constructor
*
* @param string $format The invalid format
*/
public function __construct( $format = "NULL" ) {
parent::__construct();
$this->message = sprintf( "Invalid date-input format: %s", $format );
}
}
?>