|
1
|
<?php |
|
2
|
|
|
3
|
namespace AmeliaHttp\Client\Common\Exception; |
|
4
|
|
|
5
|
use AmeliaHttp\Client\Exception\RequestException; |
|
6
|
|
|
7
|
/** |
|
8
|
* Thrown when the Plugin Client detects an endless loop.
|
|
9
|
*
|
|
10
|
* @author Joel Wurtz <joel.wurtz@gmail.com>
|
|
11
|
*/ |
|
12
|
class LoopException extends RequestException |
|
13
|
{ |
|
14
|
} |
|
15
|
|