2012-06-03 20:19:28 +02:00
|
|
|
<?php
|
|
|
|
|
2012-08-11 10:07:19 +02:00
|
|
|
namespace Sabre\VObject;
|
|
|
|
|
2012-06-03 20:19:28 +02:00
|
|
|
/**
|
2012-08-11 10:07:19 +02:00
|
|
|
* Exception thrown by Reader if an invalid object was attempted to be parsed.
|
2012-06-03 20:19:28 +02:00
|
|
|
*
|
|
|
|
* @copyright Copyright (C) 2007-2012 Rooftop Solutions. All rights reserved.
|
|
|
|
* @author Evert Pot (http://www.rooftopsolutions.nl/)
|
|
|
|
* @license http://code.google.com/p/sabredav/wiki/License Modified BSD License
|
|
|
|
*/
|
2012-08-11 10:07:19 +02:00
|
|
|
class ParseException extends \Exception { }
|