1
0
mirror of synced 2024-11-24 13:36:03 +03:00
aliexpress-top-client/tests/RetailCrm/Test/MatcherException.php

34 lines
647 B
PHP
Raw Permalink Normal View History

<?php
/**
* PHP version 7.4
*
* @category MatcherException
* @package RetailCrm\Test
*/
namespace RetailCrm\Test;
use Exception;
use Throwable;
/**
* Class MatcherException
*
* @category MatcherException
* @package RetailCrm\Test
*/
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);
}
}