diff options
Diffstat (limited to 'vendor/sabre/vobject/lib/InvalidDataException.php')
-rw-r--r-- | vendor/sabre/vobject/lib/InvalidDataException.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/sabre/vobject/lib/InvalidDataException.php b/vendor/sabre/vobject/lib/InvalidDataException.php new file mode 100644 index 000000000..50ebc0f49 --- /dev/null +++ b/vendor/sabre/vobject/lib/InvalidDataException.php @@ -0,0 +1,14 @@ +<?php + +namespace Sabre\VObject; + +/** + * This exception is thrown whenever an invalid value is found anywhere in a + * iCalendar or vCard object. + * + * @copyright Copyright (C) fruux GmbH (https://fruux.com/) + * @author Evert Pot (http://evertpot.com/) + * @license http://sabre.io/license/ Modified BSD License + */ +class InvalidDataException extends \Exception { +} |