mirror of
https://github.com/zhamao-robot/zhamao-framework.git
synced 2026-07-06 00:05:36 +08:00
23 lines
367 B
PHP
23 lines
367 B
PHP
<?php
|
|
|
|
|
|
namespace ZM\Annotation\Http;
|
|
|
|
|
|
use Doctrine\Common\Annotations\Annotation\Target;
|
|
use Exception;
|
|
use ZM\Annotation\AnnotationBase;
|
|
|
|
/**
|
|
* Class HandleException
|
|
* @package ZM\Annotation\Http
|
|
* @Annotation
|
|
* @Target("METHOD")
|
|
*/
|
|
class HandleException extends AnnotationBase
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $class_name = Exception::class;
|
|
} |