File: NoInstancesException.php

package info (click to toggle)
php-sabre-vobject 4.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,764 kB
  • sloc: php: 24,844; makefile: 40; xml: 22
file content (18 lines) | stat: -rw-r--r-- 452 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

namespace Sabre\VObject\Recur;

use Exception;

/**
 * This exception gets thrown when a recurrence iterator produces 0 instances.
 *
 * This may happen when every occurence in a rrule is also in EXDATE.
 *
 * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
 * @author Evert Pot (http://evertpot.com/)
 * @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
 */
class NoInstancesException extends Exception {

}