MaxInstancesExceededException.php 421 B

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