dolibarr.bankimport/vendor/nemiah/php-fints/lib/Fhp/Protocol/UnexpectedResponseException.php
2026-02-13 18:30:28 +01:00

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);
}
}