1
0
mirror of synced 2024-11-22 05:16:07 +03:00
api-client-php/tests/utils/Exception/MatcherException.php

35 lines
693 B
PHP
Raw Normal View History

2021-06-02 17:00:32 +03:00
<?php
/**
* PHP version 7.3
*
* @category MatcherException
* @package RetailCrm\TestUtils\Exception
*/
namespace RetailCrm\TestUtils\Exception;
use Exception;
use Throwable;
/**
* Class MatcherException
*
* @category MatcherException
* @package RetailCrm\TestUtils\Exception
*/
class MatcherException extends Exception
{
/**
* MatcherException constructor.
*
* @param string $message
* @param int $code
* @param \Throwable|null $previous
*/
public function __construct($message = "Cannot match any request", $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}