Files
zhamao-framework/src/ZM/Annotation/Http/HandleException.php

23 lines
367 B
PHP
Raw Normal View History

2020-03-25 18:35:16 +08:00
<?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;
}