1<?php 2 3namespace Sabre\VObject\Recur; 4 5use Exception; 6 7/** 8 * This exception will get thrown when a recurrence rule generated more than 9 * the maximum number of instances. 10 * 11 * @copyright Copyright (C) fruux GmbH (https://fruux.com/) 12 * @author Evert Pot (http://evertpot.com/) 13 * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License 14 */ 15class MaxInstancesExceededException extends Exception { 16} 17