AnnotationException.php 508 字节
<?php

/**
 * This file is part of the php-annotation framework.
 *
 * (c) Rasmus Schultz <rasmus@mindplay.dk>
 *
 * This software is licensed under the GNU LGPL license
 * for more information, please see:
 *
 * <https://github.com/mindplay-dk/php-annotations>
 */

namespace mindplay\annotations;

/**
 * This exception is thrown by various classes in the annotations package,
 * making it possible to catch annotation-specific exceptions in user code.
 */
class AnnotationException extends \Exception
{
}