| 1 |
<?php |
| 2 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. |
| 3 |
|
| 4 |
namespace Yoast\WP\SEO\MyYoast_Client\Application\Exceptions; |
| 5 |
|
| 6 |
use RuntimeException; |
| 7 |
|
| 8 |
/** |
| 9 |
* Exception thrown when the authorization server doesn't advertise |
| 10 |
* support for features required by this client. |
| 11 |
* |
| 12 |
* This typically indicates the server has been downgraded or the |
| 13 |
* plugin needs to be updated. |
| 14 |
*/ |
| 15 |
class Server_Capability_Exception extends RuntimeException { |
| 16 |
|
| 17 |
} |
| 18 |
|