diff options
author | Wolfy-J <[email protected]> | 2019-06-27 12:39:14 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-06-27 12:39:14 +0300 |
commit | e2ea9ee27aacd643918fe721735ba57798fb3da2 (patch) | |
tree | 02402acdd5d0521d37a7041e09d4e978ea6a268f /src/Exception/MetricException.php | |
parent | c46d80753854eba2b149ae06a2d7b798eb2aa9b8 (diff) |
php adapter for metric collection, more tests
Diffstat (limited to 'src/Exception/MetricException.php')
-rw-r--r-- | src/Exception/MetricException.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Exception/MetricException.php b/src/Exception/MetricException.php new file mode 100644 index 00000000..2d12eefe --- /dev/null +++ b/src/Exception/MetricException.php @@ -0,0 +1,17 @@ +<?php +/** + * Spiral Framework. + * + * @license MIT + * @author Anton Titov (Wolfy-J) + */ +declare(strict_types=1); + +namespace Spiral\RoadRunner\Exception; + +use Spiral\Goridge\Exceptions\RPCException; + +class MetricException extends RPCException +{ + +}
\ No newline at end of file |