15 lines
412 B
PHP
15 lines
412 B
PHP
<?php
|
|
|
|
namespace Fhp\Protocol;
|
|
|
|
/**
|
|
* Thrown if the server responds with a syntactically valid message that does not match the protocol expectations
|
|
* implemented in this library.
|
|
*/
|
|
class UnexpectedResponseException extends \RuntimeException
|
|
{
|
|
public function __construct(string $message, int $code = 0, \Exception $previous = null)
|
|
{
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
}
|