mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-21 23:16:59 +00:00
11 lines
179 B
PHP
11 lines
179 B
PHP
|
|
<?php declare(strict_types=1);
|
||
|
|
|
||
|
|
namespace PhpDocReader;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* We stumbled upon an invalid class/property/method annotation.
|
||
|
|
*/
|
||
|
|
class AnnotationException extends \Exception
|
||
|
|
{
|
||
|
|
}
|