11 lines
203 B
PHP
11 lines
203 B
PHP
<?php
|
|
|
|
namespace Facebook\WebDriver\Exception;
|
|
|
|
/**
|
|
* The requested command matched a known URL but did not match an method for that URL.
|
|
*/
|
|
class UnknownMethodException extends WebDriverException
|
|
{
|
|
}
|