EofException.php 368 B

123456789101112131415
  1. <?php
  2. namespace Sabre\VObject;
  3. /**
  4. * Exception thrown by parser when the end of the stream has been reached,
  5. * before this was expected.
  6. *
  7. * @copyright Copyright (C) 2007-2014 fruux GmbH (https://fruux.com/).
  8. * @author Evert Pot (http://evertpot.com/)
  9. * @license http://sabre.io/license/ Modified BSD License
  10. */
  11. class EofException extends ParseException {
  12. }