NoInstancesException.php 463 B

123456789101112131415161718
  1. <?php
  2. namespace Sabre\VObject\Recur;
  3. use Exception;
  4. /**
  5. * This exception gets thrown when a recurrence iterator produces 0 instances.
  6. *
  7. * This may happen when every occurence in a rrule is also in EXDATE.
  8. *
  9. * @copyright Copyright (C) 2009-2014 fruux GmbH. All rights reserved.
  10. * @author Evert Pot (http://evertpot.com/)
  11. * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
  12. */
  13. class NoInstancesException extends Exception {
  14. }