| 1 | <?php |
||
| 7 | class AuthorizationServerException extends \Exception |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | private $errorCode; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param string $message |
||
| 16 | * @param int $code |
||
| 17 | * @param Exception $previous |
||
| 18 | * @param string $errorCode |
||
| 19 | */ |
||
| 20 | public function __construct($message = "", $code = 0, Exception $previous = null, $errorCode = "") |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @return string |
||
| 29 | */ |
||
| 30 | public function getErrorCode() |
||
| 34 | } |
||
| 35 |