diff options
author | Valery Piashchynski <[email protected]> | 2020-11-26 15:30:16 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-26 15:30:16 +0300 |
commit | ee68279e68ab854ae313fc84ea6a2a905133da87 (patch) | |
tree | f0731b1bbbc996347060e8c88d49616090877a65 /src/Exceptions | |
parent | 0a48a027642a34c560717526c55f70b7260d678c (diff) | |
parent | 7ef7ce5859be3b30476167ee9a2d9d3b0092259a (diff) |
Merge pull request #400 from spiral/plugin/http
[RR2] New http plugin for the RR 2.0
Diffstat (limited to 'src/Exceptions')
-rw-r--r-- | src/Exceptions/RoadRunnerException.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/Exceptions/RoadRunnerException.php b/src/Exceptions/RoadRunnerException.php new file mode 100644 index 00000000..43967893 --- /dev/null +++ b/src/Exceptions/RoadRunnerException.php @@ -0,0 +1,18 @@ +<?php + +/** + * Spiral Framework. + * + * @license MIT + * @author Anton Titov (Wolfy-J) + */ +declare(strict_types=1); + +namespace Spiral\RoadRunner\Exceptions; + +/** + * @deprecated use \Spiral\RoadRunner\Exception\RoadRunnerException instead + */ +class RoadRunnerException extends \RuntimeException +{ +} |