1<?php 2 3namespace Sabre\VObject; 4 5/** 6 * Exception thrown by Reader if an invalid object was attempted to be parsed. 7 * 8 * @copyright Copyright (C) fruux GmbH (https://fruux.com/) 9 * @author Evert Pot (http://evertpot.com/) 10 * @license http://sabre.io/license/ Modified BSD License 11 */ 12class ParseException extends \Exception { 13} 14