InvalidDataException.php 363 B

123456789101112131415
  1. <?php
  2. namespace Sabre\VObject;
  3. /**
  4. * This exception is thrown whenever an invalid value is found anywhere in a
  5. * iCalendar or vCard object.
  6. *
  7. * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
  8. * @author Evert Pot (http://evertpot.com/)
  9. * @license http://sabre.io/license/ Modified BSD License
  10. */
  11. class InvalidDataException extends \Exception
  12. {
  13. }